-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: More clarity in nomcom feedback, and ... (#7191)
* 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
- Loading branch information
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{% if email and email == "[email protected]" 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 %}" | ||
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 }}."> | ||
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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters