fix titles, remove old html file

This commit is contained in:
Yisroel Baum 2024-10-13 14:45:27 +03:00
parent 12962c3594
commit c075e26d2d
3 changed files with 2 additions and 39 deletions

View file

@ -1,5 +1,5 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Homepage{% endblock title %} {% block title %}Line Items By Month{% endblock title %}
{% block content %} {% block content %}
<main> <main>

View file

@ -1,5 +1,5 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Budget Categories{% endblock title %} {% block title %}Vendors{% endblock title %}
{% block content %} {% block content %}
<main> <main>

View file

@ -1,37 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Budgeting</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
{% if files %}
<div class="card">
<div class="card-header bg-primary text-white">
{{month}} - {{year}}
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Line</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
{% endif %}
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>