diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-12-08 12:40:47 -0500 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-12-08 12:40:47 -0500 |
commit | 50ee6576071b8abbc8216adbb6a50ee60524e868 (patch) | |
tree | 02a1de70707bfed950a565097212ac8795e3ba38 | |
parent | 40322832b4d0355eea706c41b036d045c1c960f2 (diff) | |
download | mediagoblin-50ee6576071b8abbc8216adbb6a50ee60524e868.tar.lz mediagoblin-50ee6576071b8abbc8216adbb6a50ee60524e868.tar.xz mediagoblin-50ee6576071b8abbc8216adbb6a50ee60524e868.zip |
Fixed a small typo that was causing the mediagoblin.moderation.users_detail
page to crash.
-rw-r--r-- | mediagoblin/templates/mediagoblin/moderation/user.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/moderation/user.html b/mediagoblin/templates/mediagoblin/moderation/user.html index 54d6473f..6335ea12 100644 --- a/mediagoblin/templates/mediagoblin/moderation/user.html +++ b/mediagoblin/templates/mediagoblin/moderation/user.html @@ -148,7 +148,8 @@ {%- endtrans %}</a> </span> <span class=clear></span> - <h2>{% trans %}{{ user.username }}'s Privileges{% endtrans %}</h2> + <h2>{% trans username=user.username -%} + {{ username }}'s Privileges{% endtrans %}</h2> <form method=POST action="{{ request.urlgen( 'mediagoblin.moderation.ban_or_unban', user=user.username) }}" class="right_align"> |