Files
notifications-admin/app/templates/components/show-more.html

7 lines
232 B
HTML
Raw Normal View History

{% macro show_more(url, label, with_border=True) %}
<a
href="{{ url }}"
class="govuk-link govuk-link--no-visited-state show-more{% if not with_border %}-no-border{% endif %}"
><span>{{ label }}</span></a>
{% endmacro %}