2020-02-20 15:11:10 +00:00
|
|
|
{% macro service_link(service, endpoint, link_text) %}
|
|
|
|
|
{% if service %}
|
2023-08-08 16:19:17 -04:00
|
|
|
<a class="usa-link" href="{{ url_for(endpoint, service_id=service.id) }}">{{ link_text }}</a>
|
2020-02-19 08:20:38 +00:00
|
|
|
{% else %}
|
2023-08-25 10:40:56 -04:00
|
|
|
<b>{{ link_text|capitalize }}</b>
|
2020-02-19 08:20:38 +00:00
|
|
|
{% endif %}
|
|
|
|
|
{% endmacro %}
|