diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2011-11-18 22:40:45 +0200 |
|---|---|---|
| committer | Ville Skyttä <ville.skytta@iki.fi> | 2011-11-18 22:40:45 +0200 |
| commit | e6e65cbdc2b47fcfcb650d5225b2902649f29e0b (patch) | |
| tree | e82211b8e388a612ebc2ece63927ccd7993f803a /template/default/rec_list.html | |
| parent | 59bbd1325eb0b784616adc3a04d559ab424dd00c (diff) | |
| download | vdradmin-am-e6e65cbdc2b47fcfcb650d5225b2902649f29e0b.tar.gz vdradmin-am-e6e65cbdc2b47fcfcb650d5225b2902649f29e0b.tar.bz2 | |
Show recording length in list and details with VDR >= 1.7.21 (closes #813).
Diffstat (limited to 'template/default/rec_list.html')
| -rw-r--r-- | template/default/rec_list.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/template/default/rec_list.html b/template/default/rec_list.html index ed85ea0..ea388c3 100644 --- a/template/default/rec_list.html +++ b/template/default/rec_list.html @@ -74,6 +74,19 @@ </a> </h2> </td> + <?% IF features.VDRVERSION >= 10721 %?> + <td class="col_length <?% IF sortbylength %?>selected<?% END %?>"> + <h2> + <a href="<?% sortbylengthurl %?>"><?% gettext('Length') %?> + <?% IF sortbylength %?> + <img src="bilder/sortiert_<?% desc %?>.gif" alt="" width="9" height="11" border="0" /> + <?% ELSE %?> + <img src="bilder/spacer.gif" alt="" width="9" height="11" border="0" /> + <?% END %?> + </a> + </h2> + </td> + <?% END %?> <td class="col_name <?% IF sortbyname %?>selected<?% END %?>"> <h2> <a href="<?% sortbynameurl %?>"><?% gettext('Name') %?> @@ -101,6 +114,11 @@ <span class="new"><?% gettext('New') %?></span> <?% END %?> </td> + <?% IF features.VDRVERSION >= 10721 %?> + <td class="col_length <?% IF rec.sortbylength %?>selected<?% END %?>"> + <span class="length"><?% rec.length %?></span> + </td> + <?% END %?> <td class="col_name <?% IF rec.sortbyname %?>selected<?% END %?>"> <?% IF rec.isfolder %?> <a href="<?% rec.infurl %?>"><img align="middle" src="bilder/folder_video.png" border="0" alt="" /> <?% rec.name %?></a> |
