mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 11:51:05 -05:00
8 lines
316 B
HTML
8 lines
316 B
HTML
{% macro service_link(service, endpoint, link_text) %}
|
|
{% if service %}
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for(endpoint, service_id=service.id) }}">{{ link_text }}</a>
|
|
{% else %}
|
|
<b class="govuk-!-font-weight-bold">{{ link_text|capitalize }}</b>
|
|
{% endif %}
|
|
{% endmacro %}
|