diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
commit | 8ed70947cc069fb98d9a281927ba0f289b0a6115 (patch) | |
tree | ecf409e62d86fa44e99b85e137e2ead3423926eb /template/default/rec_edit.html | |
parent | a935422b27fcfc8713c63033c419081b5731fcff (diff) | |
download | vdradmin-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/rec_edit.html')
-rw-r--r-- | template/default/rec_edit.html | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/template/default/rec_edit.html b/template/default/rec_edit.html index c77c255..ae3b4f0 100644 --- a/template/default/rec_edit.html +++ b/template/default/rec_edit.html @@ -37,13 +37,25 @@ <tr class="row_odd"> <td class="col_left"></td> <td class="col_label"><h5><%! Original Name of Recording: !%></h5></td> - <td class="col_value"><input type="text" name="title" value="<tmpl_var title escape="HTML">" size="55" readonly /></td> + <td class="col_value"><tmpl_var title></td> <td class="col_right"></td> </tr> <tr class="row_even"> <td class="col_left"></td> <td class="col_label"><h5><%! New Name of Recording: !%></h5></td> - <td class="col_value"><input type="text" name="nn" value="<tmpl_var title escape="HTML">" size="55" /></td> + <td class="col_value"><input type="text" name="nn" value="<tmpl_var title>" size="55" /></td> + <td class="col_right"></td> + </tr> + <tr class="row_odd"> + <td class="col_left"></td> + <td class="col_label"><tmpl_if subtitle><h5><%! Subtitle: !%></h5></tmpl_if></td> + <td class="col_value"><tmpl_if subtitle><tmpl_var subtitle></tmpl_if></td> + <td class="col_right"></td> + </tr> + <tr class="row_even"> + <td class="col_left"></td> + <td class="col_label" valign="top"><h5><%! Summary: !%></h5></td> + <td class="col_value"><tmpl_var text></td> <td class="col_right"></td> </tr> <tr class="footer"> |