Move remaining move/choose conditionals from _list.html into _list_move / _list_choose

pull/1441/head
Matt Westcott 2015-04-15 19:47:10 +01:00
rodzic 8f395cc456
commit 548c63d604
3 zmienionych plików z 15 dodań i 7 usunięć

Wyświetl plik

@ -43,7 +43,7 @@
{% if pages %}
{% for page in pages %}
{% page_permissions page as page_perms %}
<tr {% if ordering == "ord" %}id="page_{{ page.id }}" data-page-title="{{ page.title }}"{% endif %} class="{% if not page.live %} unpublished{% endif %}{% if moving or choosing %}{% if not page.can_choose %}disabled{% endif %}{% endif %}">
<tr {% if ordering == "ord" %}id="page_{{ page.id }}" data-page-title="{{ page.title }}"{% endif %} class="{% if not page.live %}unpublished{% endif %} {% block page_row_classname %}{% endblock %}">
{% if orderable %}
<td class="ord">{% if ordering == "ord" %}<div class="handle icon icon-grip text-replace">{% trans 'Drag' %}</div>{% endif %}</td>
{% endif %}
@ -66,13 +66,9 @@
<td class="status" valign="top">
{% include "wagtailadmin/shared/page_status_tag.html" with page=page %}
</td>
{% if moving %}
{% include "wagtailadmin/pages/listing/_navigation_move.html" %}
{% elif choosing %}
{% include "wagtailadmin/pages/listing/_navigation_choose.html" %}
{% else %}
{% block page_navigation %}
{% include "wagtailadmin/pages/listing/_navigation_explore.html" %}
{% endif %}
{% endblock %}
</tr>
{% endfor %}
{% else %}

Wyświetl plik

@ -30,6 +30,12 @@
{% block post_parent_page_headers %}{% endblock %}
{% block page_row_classname %}{% if not page.can_choose %}disabled{% endif %}{% endblock %}
{% block page_title %}
{% include "wagtailadmin/pages/listing/_page_title_choose.html" with page=page %}
{% endblock %}
{% block page_navigation %}
{% include "wagtailadmin/pages/listing/_navigation_choose.html" %}
{% endblock %}

Wyświetl plik

@ -30,6 +30,12 @@
{% block post_parent_page_headers %}{% endblock %}
{% block page_row_classname %}{% if not page.can_choose %}disabled{% endif %}{% endblock %}
{% block page_title %}
{% include "wagtailadmin/pages/listing/_page_title_move.html" with page=page %}
{% endblock %}
{% block page_navigation %}
{% include "wagtailadmin/pages/listing/_navigation_move.html" %}
{% endblock %}