base setup

This commit is contained in:
2026-01-07 12:09:20 +05:30
commit 0c275efea1
278 changed files with 11228 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{% extends 'base.html' %}
{% block content %}
{% load crispy_forms_tags %}
<h2 class="text-2xl font-bold mb-6 text-gray-800">Admin Dashboard</h2>
<div class="flex gap-5">
<a href="{% url 'contact_list' %}"
class="px-6 py-3 border-2 border-blue-600 rounded-xl font-semibold text-blue-600 hover:text-blue-800 transition-colors">
View Contacts
</a>
<a href="{% url 'subscriber_list' %}"
class="px-6 py-3 border-2 border-green-600 rounded-xl font-semibold text-green-600 hover:text-green-800 transition-colors">
View Subscribers
</a>
<a href="{% url 'user_activity' %}"
class="px-6 py-3 border-2 border-green-600 rounded-xl font-semibold text-green-600 hover:text-green-800 transition-colors">
View Activiy
</a>
</div>
{% endblock %}