Skip to content

Commit f62af2a

Browse files
authored
feat(admin): icon to find a user account from email (#18034)
1 parent 1ee775b commit f62af2a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

warehouse/admin/templates/admin/emails/detail.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,12 @@ <h3 class="card-title">
9393
<dd>{{ email.from_ }}</dd>
9494

9595
<dt>To</dt>
96-
<dd>{{ email.to }}</dd>
96+
<dd>
97+
{{ email.to }}
98+
<a href="{{ request.route_path('admin.user.list', _query={'q': 'email:' + email.to}) }}">
99+
<i class="fa-solid fa-magnifying-glass"></i>
100+
</a>
101+
</dd>
97102

98103
<dt>Subject</dt>
99104
<dd>{{ email.subject }}</dd>

0 commit comments

Comments
 (0)