{% extends "layout.html" %} {% load static from staticfiles %} {% load i18n %} {% block content %} {% trans 'Laws' %} {% if top_items %} {% for item in top_items %} {{ item.code }} {{ item.title }} {% if item.get_changelog %}({{ item.get_changelog_text }}){% endif %} {% endfor %} {% trans 'More Laws' %} {% endif %} {% for c in chars %} {{ c }} {% endfor %} {% if items %} {% for item in items %} {{ item.code }} ({{ item.title }}) {% endfor %} {% endif %} {% if not items %} {% include "noresults.html" %} {% endif %} {% include "pagination.html" %} {% endblock %}
{{ item.title }} {% if item.get_changelog %}({{ item.get_changelog_text }}){% endif %}