Initial Commit

This commit is contained in:
2025-08-18 21:04:22 +05:30
commit f6ebcb570a
32 changed files with 521 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!-- base.html -->
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>Civixfix - {% block title %}{% endblock %}</title>
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
{% block content %}{% endblock %}
</div>
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
</body>
</html>