26 lines
813 B
HTML
Executable File
26 lines
813 B
HTML
Executable File
{% 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 %}
|