emails: Fix missing ul tag in day1 email template.

This commit is contained in:
Tim Abbott
2021-09-17 14:51:52 -07:00
parent 743712c267
commit cb5b33ed07

View File

@@ -21,16 +21,18 @@
<p> <p>
{{ _('Your account details:') }} {{ _('Your account details:') }}
<li>{% trans organization_url=macros.link_tag(realm_uri) %}Organization URL: {{ organization_url }}{% endtrans %}<br /></li> <ul>
{% if ldap %} <li>{% trans organization_url=macros.link_tag(realm_uri) %}Organization URL: {{ organization_url }}{% endtrans %}<br /></li>
{% if ldap_username %} {% if ldap %}
<li>{% trans %}Username: {{ ldap_username }}{% endtrans %}<br /></li> {% if ldap_username %}
<li>{% trans %}Username: {{ ldap_username }}{% endtrans %}<br /></li>
{% else %}
<li>{{ _('Use your LDAP account to log in') }}<br /></li>
{% endif %}
{% else %} {% else %}
<li>{{ _('Use your LDAP account to log in') }}<br /></li> <li>{% trans email=macros.email_tag(email) %}Email: {{ email }}{% endtrans %}<br /></li>
{% endif %} {% endif %}
{% else %} </ul>
<li>{% trans email=macros.email_tag(email) %}Email: {{ email }}{% endtrans %}<br /></li>
{% endif %}
{% trans apps_page_link="https://zulip.com/apps" %}(you'll need these to sign in to the <a href="{{ apps_page_link }}">mobile and desktop</a> apps){% endtrans %} {% trans apps_page_link="https://zulip.com/apps" %}(you'll need these to sign in to the <a href="{{ apps_page_link }}">mobile and desktop</a> apps){% endtrans %}
</p> </p>