mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
This makes the template statistics section of the dashboard look less like its own weird thing and more like: - the templates page - the upcoming changes to the styling of the received text messages banner on the dashboard
11 lines
304 B
HTML
11 lines
304 B
HTML
{% macro show_more(url=None, label=None, with_border=True) %}
|
|
{% if url and label %}
|
|
<a
|
|
href="{{ url }}"
|
|
class="show-more{% if not with_border %}-no-border{% endif %}"
|
|
><span>{{ label }}</span></a>
|
|
{% else %}
|
|
<span class="show-more-empty"></span>
|
|
{% endif %}
|
|
{% endmacro %}
|