Tweaked a few more issues

This commit is contained in:
alexjanousekGSA
2025-07-31 09:24:44 -04:00
parent ab7b262c01
commit 6942a2843d
11 changed files with 18 additions and 21 deletions
+11 -9
View File
@@ -20,15 +20,17 @@
{% call form_wrapper() %}
{{ form.key_name }}
{% 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 class="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>
{{ page_footer('Continue') }}
{% endcall %}