aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin/dashboard.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 19:25:30 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 19:25:30 +0200
commit39d49458ef55adaccb49041a231b5dfd88ce3c3f (patch)
treeda20ef6418cf517bfb60ddbfaf01ee6ee024a5af /pyaggr3g470r/templates/admin/dashboard.html
parentForgot to remove debug comment. (diff)
downloadnewspipe-39d49458ef55adaccb49041a231b5dfd88ce3c3f.tar.gz
newspipe-39d49458ef55adaccb49041a231b5dfd88ce3c3f.tar.bz2
newspipe-39d49458ef55adaccb49041a231b5dfd88ce3c3f.zip
Updated translations.
Diffstat (limited to 'pyaggr3g470r/templates/admin/dashboard.html')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index 99f843f5..a9b3e546 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -4,15 +4,15 @@
{% endblock %}
{% block content %}
<div class="container">
-<h1>Registered users</h1>
+<h1>{{ _('Registered users') }}</h1>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
- <th>Firstname</th>
- <th>Lastname</th>
- <th>Email</th>
- <th>Actions</th>
+ <th>{{ _('Firstname') }}</th>
+ <th>{{ _('Lastname') }}</th>
+ <th>{{ _('Email') }}</th>
+ <th>{{ _('Actions') }}</th>
</tr>
</thead>
<tbody>
@@ -23,17 +23,17 @@
<td>{{ user.lastname }}</td>
<td>{{ user.email }}</td>
<td>
- <a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="View this user"></i></a>
- <a href="/admin/edit_user/{{ user.id }}/"><i class="glyphicon glyphicon-edit" title="Edit this user"></i></a>
- <a href="/admin/delete_user/{{ user.id }}/"><i class="glyphicon glyphicon-remove" title="Delete this user"></i></a>
+ <a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="{{ _('View this user') }}<"></i></a>
+ <a href="/admin/edit_user/{{ user.id }}/"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a>
+ <a href="/admin/delete_user/{{ user.id }}/"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this user') }}"></i></a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<br />
-<a href="/admin/create_user/" class="btn btn-default">Add a new user</a>
+<a href="/admin/create_user/" class="btn btn-default">{{ _('Add a new user') }}</a>
<br /><br />
-<p class="text-info">As an administrator you are not listed in this table.</p>
+<p class="text-info">{{ _('As an administrator you are not listed in this table') }}.</p>
</div>
{% endblock %} \ No newline at end of file
bgstack15