{% extends "base.html" %} {% load i18n %} {% load static %} {% load thumbnail %} {% load hdalab_tags %} {% block title %}{{block.super}} > {% trans 'Manage renkan publication' %}{% endblock %} {% block css_import %} {{block.super}} {% endblock %} {% block js_import %} {{block.super}} {% endblock %} {% block main_content %}
{% if page.has_previous %}{% trans 'Previous' %}{% endif %} {% if page.has_previous and page.has_next %} - {% endif %}{% if page.has_next %}{% trans 'Next' %}{% endif %}
| {% trans 'Title' %} {% if sort_param == 'title' %}{% endif %} | {% trans 'Fav.' %} {% if sort_param == 'favorite' %}{% endif %} | {% trans 'User' %} {% if sort_param == 'user' %}{% endif %} | {% trans 'Modification date' %} {% if sort_param == 'date' %}{% endif %} | {% trans 'Preview' %} | {% trans 'State' %} {% if sort_param == 'state' %}{% endif %} | {% trans 'Actions' %} |
|---|---|---|---|---|---|---|
| {{ r.title }} | {{ r.owner.username }} | {{ r.modification_date|date:"Y-m-d H:i" }} | {% thumbnail r.image 100x100 as thumb %} |
{{ hr.state|state_to_str }} |
{% if page.has_previous %}{% trans 'Previous' %}{% endif %} {% if page.has_previous and page.has_next %} - {% endif %}{% if page.has_next %}{% trans 'Next' %}{% endif %}
{% endblock %}