aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/admin
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-18 18:51:58 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-18 18:51:58 +0200
commitbab53eab9138c91dce25eb3710ede73939a86a64 (patch)
tree3996bd20287c249a963fec3ed933a45a367c87ac /src/web/templates/admin
parentnew buildpack for bower (diff)
downloadnewspipe-bab53eab9138c91dce25eb3710ede73939a86a64.tar.gz
newspipe-bab53eab9138c91dce25eb3710ede73939a86a64.tar.bz2
newspipe-bab53eab9138c91dce25eb3710ede73939a86a64.zip
Datatables for the user public profile page.
Diffstat (limited to 'src/web/templates/admin')
-rw-r--r--src/web/templates/admin/dashboard.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html
index 58b48fa1..48c98b68 100644
--- a/src/web/templates/admin/dashboard.html
+++ b/src/web/templates/admin/dashboard.html
@@ -5,7 +5,7 @@
{% block content %}
<div class="container">
<h1>{{ _('Registered users') }}</h1>
-<table id="table-users" class="table table-striped ">
+<table id="table-users" class="table table-striped">
<thead>
<tr>
<th>#</th>
@@ -64,7 +64,7 @@ $(document).ready(function() {
{
bSortable: false,
targets: [0, 5]
- }
+ }
]
});
});
bgstack15