Formatting and linting changes

This commit is contained in:
alexjanousekGSA
2025-07-31 07:49:12 -04:00
parent 7d5db34d16
commit 31a9e39846
15 changed files with 62 additions and 33 deletions

View File

@@ -20,17 +20,15 @@
{% call form_wrapper() %}
{{ form.key_name }}
<div class="api-key-radios margin-top-5">
{% if current_service.trial_mode %}
{{ radios(
form.key_type,
disable=['normal'],
option_hints={'normal': 'Not available because your service is in <a class="usa-link" href="/features/trial-mode">trial mode</a>'|safe}
) }}
{% else %}
{{ radios(form.key_type) }}
{% endif %}
</div>
{% if current_service.trial_mode %}
{{ radios(
form.key_type,
disable=['normal'],
option_hints={'normal': 'Not available because your service is in <a class="usa-link" href="/features/trial-mode">trial mode</a>'|safe}
) }}
{% else %}
{{ radios(form.key_type) }}
{% endif %}
{{ page_footer('Continue') }}
{% endcall %}