separating html into base and unique url files

This commit is contained in:
Yisroel Baum 2024-10-07 15:25:59 +03:00
parent e3e166e51e
commit 4b9483f333
5 changed files with 17 additions and 13 deletions

View file

@ -45,6 +45,5 @@
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<script src="{{url_for('.static', filename='index.js')}}"></script>
</body>
</html>

View file

@ -41,4 +41,5 @@
</div>
</div>
</main>
<script src="{{url_for('.static', filename='budget_categories.js')}}"></script>
{% endblock content %}

View file

@ -57,7 +57,7 @@
</tr>
</thead>
<tbody>
{% for li in all_line_items %}
{% for li in last_month_lines %}
<tr id="{{li[0].id}}-row">
<th scope="row">{{li[0].id}}</th>
<th scope="row">{{li[0].parent_line_item_id}}</th>
@ -78,4 +78,5 @@
</div>
</div>
</main>
<script src="{{url_for('.static', filename='homepage.js')}}"></script>
{% endblock content %}