combo/combo/manager/templates/combo/invalid_cell_report.html

29 lines
840 B
HTML

{% extends "combo/manager_base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans 'Invalid cells' %}</h2>
{% endblock %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'combo-manager-invalid-cell-report' %}">{% trans 'Anomaly report' %}</a>
{% endblock %}
{% block content %}
{% if object_list %}
<ul class="objects-list">
{% for cell in object_list %}
<li>
{% trans "Page:" %} <a href="{% url 'combo-manager-page-view' pk=cell.page_id %}">{{ cell.page.title }}</a> -
{% trans "Cell:" %} <a href="{% url 'combo-manager-page-view' pk=cell.page_id %}#cell-{{ cell.get_reference }}">{{ cell.get_label }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<div class="big-msg-info">
{% trans "No invalid cell found." %}
</div>
{% endif %}
{% endblock %}