{% extends "core/base.html" %} {% load humanize %} {% block content %}

All Reported Issues

{% for issue in issues %}
{% if issue.photo %} {{ issue.title }} {% else %} No image {% endif %}
{{ issue.department.name|default:"General" }}
{{ issue.title|truncatewords:6 }}

{{ issue.description|truncatewords:18 }}

{{ issue.location|truncatewords:2 }}
{% if user.is_authenticated %} {% else %} {{ issue.vote_count }} {% endif %}
{% empty %}

No issues reported yet

Be the first to report an issue in your community!

Report an Issue
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}