* feat: Remove trailing period from photo title, etc For consistency, in email and photo tooltips, remove the trailing period. * feat: Remove email link in NomCom feedback Seeing "User Name {envelope}" seems to confuse people; it's two links, not one. So don't show the envelope-icon, Also change text to say "current nomcom" when saying who gets it. Fixes: #7032
8 lines
950 B
HTML
8 lines
950 B
HTML
{% if email and email == "system@datatracker.ietf.org" or name and name == "(System)" %}<span class="text-body-secondary">(System)</span>{% else %}<span {% if class %}class="{{ class }}"
|
|
{% endif %}>{% if email or name %}<a {% if class %}class="text-reset"{% endif %}
|
|
title="{% if title %}{{ title }}{% else %}Datatracker profile of {{ name }}{% endif %}"
|
|
{% if email %} href="{% url 'ietf.person.views.profile' email_or_name=email %}" {% else %} href="{% url 'ietf.person.views.profile' email_or_name=name %}" {% endif %}>{{ name }}</a>{% if email and with_email %} <a {% if class %}class="text-reset"{% endif %}
|
|
href="mailto:{{ email|urlencode }}"
|
|
aria-label="Compose email to {{ email }}"
|
|
title="Compose email to {{ email }}">
|
|
<i class="bi bi-envelope"></i></a>{% endif %}{% else %}<span class="text-body-secondary">(None)</span>{% endif %}</span>{% endif %} |