{% 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 "View all suggestions from your source" %} {{ suggestions_count }}
| {% 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 %} |
||||
{% blocktrans with start=suggestions.start_index end=suggestions.end_index total=suggestions.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} suggestions {% endblocktrans %}