mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-14 10:20:10 -04:00
It should be `.get_examples()` (a method) not `.examples` (a property) but Jinja swallows the error and prints nothing.
22 lines
697 B
HTML
22 lines
697 B
HTML
{% from "components/page-header.html" import page_header %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Choose where to broadcast to
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
"Choose where to broadcast to",
|
|
back_link=url_for(".preview_broadcast_areas", service_id=current_service.id)
|
|
) }}
|
|
|
|
{% for library in libraries|sort %}
|
|
<a class="file-list-filename-large govuk-link govuk-link--no-visited-state" href="{{ url_for('.choose_broadcast_area', service_id=current_service.id, library_slug=library.id) }}">{{ library.name }}</a>
|
|
<p class="file-list-hint-large">{{ library.get_examples() }}</p>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|