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
1 changed files with 10 additions and 8 deletions

View File

@ -21,16 +21,18 @@
<p>
{{ _('Your account details:') }}
<li>{% trans organization_url=macros.link_tag(realm_uri) %}Organization URL: {{ organization_url }}{% endtrans %}<br /></li>
{% if ldap %}
{% if ldap_username %}
<li>{% trans %}Username: {{ ldap_username }}{% endtrans %}<br /></li>
<ul>
<li>{% trans organization_url=macros.link_tag(realm_uri) %}Organization URL: {{ organization_url }}{% endtrans %}<br /></li>
{% if ldap %}
{% if ldap_username %}
<li>{% trans %}Username: {{ ldap_username }}{% endtrans %}<br /></li>
{% else %}
<li>{{ _('Use your LDAP account to log in') }}<br /></li>
{% endif %}
{% else %}
<li>{{ _('Use your LDAP account to log in') }}<br /></li>
<li>{% trans email=macros.email_tag(email) %}Email: {{ email }}{% endtrans %}<br /></li>
{% endif %}
{% else %}
<li>{% trans email=macros.email_tag(email) %}Email: {{ email }}{% endtrans %}<br /></li>
{% endif %}
</ul>
{% 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>