separating html into base and unique url files
This commit is contained in:
parent
e3e166e51e
commit
4b9483f333
5 changed files with 17 additions and 13 deletions
|
|
@ -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>
|
||||
|
|
@ -41,4 +41,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<script src="{{url_for('.static', filename='budget_categories.js')}}"></script>
|
||||
{% endblock content %}
|
||||
|
|
@ -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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue