{% extends "layouts/source_user_base.html" %} {% load i18n %} {% block title %}{% trans "My Suggestions" %} - {{ source.get_localized_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "My Suggestions" %}

{% trans "View all suggestions from your source" %} {{ suggestions_count }}

{% if source_user.can_create_suggestions %} {% trans "Create Suggestion" %} {% endif %}

{% trans "Filters" %}

{% trans "All Suggestions" %} {{ suggestions_count }}

{% for sug in suggestions %} {% empty %} {% endfor %}
{% trans "Title" %} {% trans "Suggestion" %} {% trans "Area" %} {% trans "Status" %} {% trans "Created" %}
{{ sug.title|truncatechars:35 }} {{ sug.message|truncatechars:50 }} {{ sug.get_category_display }} {% if sug.status == 'new' %} {% trans "New" %} {% elif sug.status == 'reviewed' %} {% trans "Reviewed" %} {% elif sug.status == 'in_progress' %} {% trans "In Progress" %} {% elif sug.status == 'implemented' %} {% trans "Implemented" %} {% else %} {{ sug.get_status_display|default:sug.status }} {% endif %} {{ sug.created_at|date:"M d, Y" }}

{% trans "No suggestions found" %}

{% if source_user.can_create_suggestions %} {% trans "Submit your first suggestion" %} {% endif %}
{% if suggestions.has_other_pages %}

{% blocktrans with start=suggestions.start_index end=suggestions.end_index total=suggestions.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} suggestions {% endblocktrans %}

{% if suggestions.has_previous %} {% trans "Previous" %} {% endif %} {% blocktrans with num=suggestions.number total=suggestions.paginator.num_pages %}Page {{ num }} of {{ total }}{% endblocktrans %} {% if suggestions.has_next %} {% trans "Next" %} {% endif %}
{% endif %}
{% endblock %}