{% extends "core/base.html" %} {% block title %}Citizen Dashboard - CivixFix{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Welcome, {{ user.username }}

Citizen Dashboard


Quick Stats

{{ user_issues.count }}

My Reports

{{ resolved_count }}

Resolved

Welcome to CivixFix!

Report community issues, track their progress, and help make your neighborhood better. Start by reporting an issue using the button on the left.

My Recent Reports
{% for issue in user_issues %}
{{ issue.title }}

{{ issue.description|truncatewords:15 }}

{{ issue.department.name|default:"No Department" }} {{ issue.get_status_display }} {{ issue.created_at|date:"M d, Y" }}
{% if issue.photo %}
Issue photo
{% endif %}
{% empty %}
No issues reported yet

Click "Report New Issue" to get started!

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}