Skip to content

Commit

Permalink
|Bug 944344] Linkify usernames in deactivation log
Browse files Browse the repository at this point in the history
  • Loading branch information
atopal authored and rlr committed Dec 2, 2013
1 parent 916d6c0 commit 2cbaa08
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions kitsune/users/templates/users/deactivation_log.html
@@ -1,8 +1,10 @@
{% extends 'base.html' %}
{% set title = _('Deactivation Log') %}

{% set styles = ('users',) %}

{% block content %}
<h1>{{ title }}</h1>
<table id="deactivations-log">
<thead>
<tr>
Expand All @@ -15,8 +17,10 @@
{% for deactivation in deactivations %}
<tr>
<td>{{ deactivation.date }}</td>
<td>{{ deactivation.user }}</td>
<td>{{ deactivation.moderator }}</td>
<td><a href="{{ profile_url(deactivation.user) }}">
{{ deactivation.user }}</a></td>
<td><a href="{{ profile_url(deactivation.moderator) }}">
{{ deactivation.moderator }}</a></td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 2cbaa08

Please sign in to comment.