Merge pull request #1256 from calmh/fix-963

Adds File Versioning to folder info (fixes #963)
This commit is contained in:
Audrius Butkevicius 2015-01-15 17:25:28 +00:00
commit 261825a89b
2 changed files with 8 additions and 1 deletions

View File

@ -150,6 +150,13 @@
<th><span class="glyphicon glyphicon-refresh"></span>&emsp;<span translate>Rescan Interval</span></th>
<td class="text-right">{{folder.RescanIntervalS}} s</td>
</tr>
<tr ng-if="folder.Versioning.Type">
<th><span class="glyphicon glyphicon-tags"></span>&emsp;<span translate>File Versioning</span></th>
<td class="text-right" ng-switch="folder.Versioning.Type">
<span ng-switch-when="staggered" translate>Staggered File Versioning</span>
<span ng-switch-when="simple" translate>Simple File Versioning</span>
</td>
</tr>
<tr>
<th><span class="glyphicon glyphicon-share-alt"></span>&emsp;<span translate>Shared With</span></th>
<td class="text-right">{{sharesFolder(folder)}}</td>

File diff suppressed because one or more lines are too long