base setup
This commit is contained in:
25
at_django_boilerplate/backend_admin/templates/admin_dashboard.html
Executable file
25
at_django_boilerplate/backend_admin/templates/admin_dashboard.html
Executable 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 %}
|
||||
Reference in New Issue
Block a user