summaryrefslogtreecommitdiff
path: root/template/default/at_timer_new.html
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2005-10-21 10:24:52 +0200
committerAndreas Mair <amair.sob@googlemail.com>2005-10-21 10:24:52 +0200
commit8ed70947cc069fb98d9a281927ba0f289b0a6115 (patch)
treeecf409e62d86fa44e99b85e137e2ead3423926eb /template/default/at_timer_new.html
parenta935422b27fcfc8713c63033c419081b5731fcff (diff)
downloadvdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.gz
vdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.bz2
2005-10-21: 0.97-am3.4.2rcv0.97-am3.4.2rc
- Hopefully fixed browsing in "recordings" menu (if there are folders having the same name). - Added new skin "default". - Removed i18n.pl. - Localization can be set in configuration again. - Added "Transponder" and "CA-System" to tooltips in timer_list. - Show recording's summary and subtitle in rec_edit (Requested by BigDiSt). - Check for and shorten too long summary when programming timer. - Check for too long commands sent to SVDRPort. - Channel select box in TV. - "Test" button in AutoTimer edit for showing results of current settings (Requested by Hardy Flor). - Link from channel name in prog_list2 and timer_list to prog_list. - Bring popups to the front (e.g. help, prog_detail...) (Based on a patch submitted by Ville Skyttä). - Reuse existing TV, RC and help windows (Based on a patch submitted by Ville Skyttä). - Send vdradmin.m3u when streaming. - Tooltips in timer_list, prog_timeline and at_timer_list can be deactivated (Requested by Hardy Flor). - Fixed wrong HTML tags in rec_detail (Reported by foobar42).
Diffstat (limited to 'template/default/at_timer_new.html')
-rw-r--r--template/default/at_timer_new.html42
1 files changed, 38 insertions, 4 deletions
diff --git a/template/default/at_timer_new.html b/template/default/at_timer_new.html
index d1e14ce..263d592 100644
--- a/template/default/at_timer_new.html
+++ b/template/default/at_timer_new.html
@@ -44,15 +44,15 @@
<td class="col_left"></td>
<td class="col_label"><h5><%! AutoTimer Active: !%></h5></td>
<td class="col_value">
-<tmpl_if name="oneshot">
+<?% IF active == 2 %?>
<input type="radio" name="active" value="1" id="active_yes" /><label for="active_yes"><%! Yes !%></label>
<input type="radio" name="active" value="0" id="active_no" /><label for="active_no"><%! No !%></label>
<input type="radio" name="active" value="2" id="active_oneshot" checked /><label for="active_oneshot"><%! oneshot !%></label>
-<tmpl_else>
+<?% ELSE %?>
<input type="radio" name="active" value="1" id="active_yes" <tmpl_if active>checked</tmpl_if> /><label for="active_yes"><%! Yes !%></label>
<input type="radio" name="active" value="0" id="active_no" <tmpl_unless active>checked</tmpl_unless> /><label for="active_no"><%! No !%></label>
<input type="radio" name="active" value="2" id="active_oneshot" /><label for="active_oneshot"><%! oneshot !%></label>
-</tmpl_if>
+<?% END %?>
</td>
<td class="col_right"></td>
</tr>
@@ -174,11 +174,45 @@
<div id="buttons">
<input type="submit" class="submit" name="save" value="<%! Save !%>" />
+ <input type="submit" class="submit" name="test" value="<%! Test !%>" />
<input type="submit" class="submit" name="exit" value="<%! Cancel !%>" />
</div>
- <input type="hidden" name="aktion" value="at_timer_save" />
+ <input type="hidden" name="aktion" value="at_timer_aktion" />
<input type="hidden" name="id" value="<tmpl_var id>" />
</form>
+
+<tmpl_if at_test>
+ <br />
+ <tmpl_if matches>
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
+ <tr class="heading">
+ <td class="col_left"></h2></td>
+ <td><h2><%! Title !%></h2></td>
+ <td><h2><%! Subtitle !%></h2></td>
+ <td><h2><%! Broadcasted !%></h2></td>
+ <td><h2><%! Stored in !%></h2></td>
+ <td class="col_right"></td>
+ </tr>
+ <tmpl_loop matches>
+ <tr class="<tmpl_if __ODD__>row_odd<tmpl_else>row_even</tmpl_if>">
+ <td class="col_left"></td>
+ <td><tmpl_var otitle></td>
+ <td><tmpl_var subtitle></td>
+ <td><tmpl_var weekday>, <tmpl_var start> - <tmpl_var stop> (<tmpl_var channel>)</td>
+ <td><tmpl_var title></td>
+ <td class="col_right"></td>
+ </tr>
+ </tmpl_loop>
+ <tr class="footer">
+ <td class="col_left"></td>
+ <td colspan="4"></td>
+ <td class="col_right"></td>
+ </tr>
+ </table>
+ <tmpl_else>
+ <div class="warning"><%! No matches found! !%></div>
+ </tmpl_if>
+</tmpl_if>
</body>
</html>