mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-11 22:14:06 -05:00
8 lines
252 B
HTML
8 lines
252 B
HTML
{% macro service_link(service, endpoint, link_text) %}
|
|
{% if service %}
|
|
<a class="usa-link" href="{{ url_for(endpoint, service_id=service.id) }}">{{ link_text }}</a>
|
|
{% else %}
|
|
<b>{{ link_text|capitalize }}</b>
|
|
{% endif %}
|
|
{% endmacro %}
|