mirror of https://github.com/zulip/zulip.git
emails: Fix missing ul tag in day1 email template.
This commit is contained in:
parent
743712c267
commit
cb5b33ed07
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue