mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 05:13:21 -07:00
Add users page
Set 10 results per page as default on Datatables Fix missing metadata bug
This commit is contained in:
parent
fa696adc79
commit
650e0963e2
5 changed files with 241 additions and 7 deletions
|
@ -56,6 +56,11 @@
|
|||
% else:
|
||||
<li><a href="history"><i class="fa fa-history fa-2x" data-toggle="tooltip" data-placement="bottom" title="History" id="history"></i></a></li>
|
||||
% endif
|
||||
% if title=="Users":
|
||||
<li class="active"><a href="users"><i class="fa fa-users fa-2x" data-toggle="tooltip" data-placement="bottom" title="Users" id="users"></i></a></li>
|
||||
% else:
|
||||
<li><a href="users"><i class="fa fa-users fa-2x" data-toggle="tooltip" data-placement="bottom" title="Users" id="users"></i></a></li>
|
||||
% endif
|
||||
% if title=="Log":
|
||||
<li class="active"><a href="logs"><i class="fa fa-book fa-2x" data-toggle="tooltip" data-placement="bottom" title="Logs" id="logs"></i></a></li>
|
||||
% else:
|
||||
|
@ -83,6 +88,9 @@
|
|||
$(document).ready(function() {
|
||||
$('#history').tooltip();
|
||||
});
|
||||
$(document).ready(function() {
|
||||
$('#users').tooltip();
|
||||
});
|
||||
$(document).ready(function() {
|
||||
$('#logs').tooltip();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue