modern-django-starter/templates/staff_dashboard.html
Django Template 4bbc56a08f Initial commit: Django boilerplate with authentication, Docker, and Dokploy support
 Features:
- Complete Django project with authentication
- Email/password and social login (Google, Facebook)
- Role-based access control (admin, staff, user)
- Docker and Docker Compose setup
- Production-ready configuration
- Static file handling with WhiteNoise
- PostgreSQL database integration
- Comprehensive documentation
- GitHub CI/CD workflows
- Dokploy deployment configuration

🚀 Ready for deployment on Dokploy, Heroku, Railway, and other platforms
2025-09-11 09:36:55 +05:30

62 lines
2.2 KiB
HTML

{% extends 'base.html' %}
{% block title %}Staff Dashboard - Django Boilerplate{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-12">
<h1>👨‍💼 Staff Dashboard</h1>
<p class="lead">Staff management panel</p>
</div>
</div>
<div class="row mt-4">
<div class="col-md-6">
<div class="card">
<div class="card-body text-center">
<h5 class="card-title">User Support</h5>
<p class="card-text">Assist users with account and technical issues</p>
<a href="#" class="btn btn-primary">Support Center</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body text-center">
<h5 class="card-title">Content Management</h5>
<p class="card-text">Manage and moderate platform content</p>
<a href="#" class="btn btn-primary">Content Panel</a>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h5>Staff Information</h5>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-6">
<h6>Current User</h6>
<p><strong>Name:</strong> {{ user.full_name|default:user.email }}</p>
<p><strong>Role:</strong> Staff Member</p>
<p><strong>Department:</strong> {{ user.profile.department|default:"General" }}</p>
</div>
<div class="col-md-6">
<h6>Quick Actions</h6>
<div class="d-grid gap-2">
<button class="btn btn-outline-primary btn-sm">View Reports</button>
<button class="btn btn-outline-secondary btn-sm">Export Data</button>
<button class="btn btn-outline-info btn-sm">Send Notifications</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}