We have initial implementation of sync lists (may still be buggy)

To get usernames in sync lists go to Users->Refresh Users.
This commit is contained in:
Tim 2015-07-02 13:04:19 +02:00
commit d2db662e14
7 changed files with 103 additions and 36 deletions

View file

@ -113,6 +113,19 @@ from plexpy import version
</a>
</li>
% endif
% if title=="Synced Items":
<li class="active">
<a href="sync">
<i class="fa fa-cloud-download fa-2x" data-toggle="tooltip" data-placement="bottom" title="Synced Items" id="sync"></i>
</a>
</li>
% else:
<li>
<a href="sync">
<i class="fa fa-cloud-download fa-2x" data-toggle="tooltip" data-placement="bottom" title="Synced Items" id="sync"></i>
</a>
</li>
% endif
% if title=="Log":
<li class="active">
<a href="logs">
@ -161,6 +174,9 @@ ${next.body()}
$(document).ready(function() {
$('#graphs').tooltip();
});
$(document).ready(function() {
$('#sync').tooltip();
});
$(document).ready(function() {
$('#logs').tooltip();
});