1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {% extends "misago/admin/generic/list.html" %}
- {% load i18n %}
- {% block page-actions %}
- <div class="page-actions">
- <a href="{% url 'misago:admin:forums:nodes:new' %}" class="btn btn-success">
- <span class="fa fa-plus-circle"></span>
- {% trans "New forum" %}
- </a>
- </div>
- {% endblock %}
- {% block table-header %}
- <th>{% trans "Forum" %}</th>
- {% for action in extra_actions %}
- <th style="width: 1%;"> </th>
- {% endfor %}
- <th> </th>
- <th> </th>
- <th> </th>
- <th> </th>
- {% endblock table-header %}
- {% block table-row %}
- <td class="item-name">
- {% for i in item.level_range %}
-
- {% endfor %}
- {% if item.role == 'category' %}
- <span class="fa fa-folder-open tooltip-top" title="{% trans "Category" %}"></span>
- {% elif item.role == 'forum' %}
- <span class="fa fa-comments-o tooltip-top" title="{% trans "Forum" %}"></span>
- {% elif item.role == 'redirect' %}
- <span class="fa fa-link tooltip-top" title="{% trans "Redirect" %}"></span>
- {% endif %}
- {{ item }}
- </td>
- <td class="row-action">
- {% if not item.last %}
- <form action="{% url 'misago:admin:forums:nodes:down' forum_id=item.id %}" method="post">
- <button class="btn btn-default tooltip-top" title="{% trans "Move down" %}">
- {% csrf_token %}
- <span class="fa fa-chevron-down"></span>
- </button>
- </form>
- {% else %}
-
- {% endif %}
- </td>
- <td class="row-action">
- {% if not item.first %}
- <form action="{% url 'misago:admin:forums:nodes:up' forum_id=item.id %}" method="post">
- <button class="btn btn-default tooltip-top" title="{% trans "Move up" %}">
- {% csrf_token %}
- <span class="fa fa-chevron-up"></span>
- </button>
- </form>
- {% else %}
-
- {% endif %}
- </td>
- {% for action in extra_actions %}
- <td class="row-action">
- <a href="{% url action.link forum_id=item.id %}" class="btn btn-{% if action.style %}{{ action.style }}{% else %}default{% endif %} tooltip-top" title="{{ action.name }}">
- <span class="{{ action.icon }}"></span>
- </a>
- </td>
- {% endfor %}
- <td class="row-action">
- <a href="{% url 'misago:admin:forums:nodes:edit' forum_id=item.id %}" class="btn btn-primary tooltip-top" title="{% trans "Edit" %}">
- <span class="fa fa-pencil"></span>
- </a>
- </td>
- <td class="row-action">
- <a href="{% url 'misago:admin:forums:nodes:delete' forum_id=item.id %}" class="btn btn-danger tooltip-top" title="{% trans "Delete" %}">
- <span class="fa fa-times"></span>
- </a>
- </td>
- {% endblock %}
- {% block emptylist %}
- <td colspan="{{ 5|add:extra_actions_len }}">
- <p>{% trans "No forums exist." %}</p>
- </td>
- {% endblock emptylist %}
|