Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
{% extends "wagtailadmin/pages/listing/_list.html" %}

{% load i18n %}

{# Page listing include, customised for 'move' mode #}

{% block table_classname %}chooser{% endblock %}

{% block pre_parent_page_headers %}
    <tr class="table-headers">
        <th class="title">Title</th>
        {% if show_parent %}
            <th class="parent">{% trans 'Parent' %}</th>
        {% endif %}
        <th class="updated">{% trans 'Updated' %}</th>
        <th class="type">{% trans 'Type' %}</th>
        <th class="status">{% trans 'Status' %}</th>
        <th></th>
    </tr>
{% endblock %}

{% block parent_page_row_classname %}{% if not parent_page.can_choose %}disabled{% endif %}{% endblock %}

{% block parent_page_title %}
    {% include "wagtailadmin/pages/listing/_page_title_move.html" with page=parent_page %}
{% endblock %}

{% 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 %}