diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-06-26 12:48:24 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-06-26 12:48:24 +0200 |
commit | f823ff4bdab5bea277c34d8804de946d7c7961e1 (patch) | |
tree | 785da7c329d45fd4464511e2f13be055cee4a91e /template/default/prog_detail.html | |
parent | fea04122f6f8b7e4f4ca4c59dc43be6567290d03 (diff) | |
download | vdradmin-am-3.4.6beta4.tar.gz vdradmin-am-3.4.6beta4.tar.bz2 |
2006-06-26: 3.4.6beta4v3.4.6beta4
- Changed: CSS a little bit.
- Rewrote: prog_timeline to make it more dynamic (needs JavaScript) (Submitted by Torsten Herz).
- Changed: displaying of audio/video tracks in prog_details (Fixes weird EPG display behaviour).
Diffstat (limited to 'template/default/prog_detail.html')
-rw-r--r-- | template/default/prog_detail.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/template/default/prog_detail.html b/template/default/prog_detail.html index 8e3d6c4..9b6879b 100644 --- a/template/default/prog_detail.html +++ b/template/default/prog_detail.html @@ -53,24 +53,30 @@ <div class="epg_subtitle"><tmpl_var subtitle></div> </tmpl_if> <div class="epg_summary"><tmpl_var text></div> - <tmpl_if has_video> + <tmpl_if video> <div class="epg_video"> <h4><%! Video tracks: !%></h4> - <tmpl_loop video> + <tmpl_var video> + <!-- + <tmpl_loop videox> <h5><%! Language: !%></h5> <tmpl_var lang> <h5><%! Format: !%></h5> <tmpl_var format><br /> </tmpl_loop> + --> </div> </tmpl_if> - <tmpl_if has_audio> + <tmpl_if audio> <div class="epg_audio"> <h4><%! Audio tracks: !%></h4> - <tmpl_loop audio> + <tmpl_var audio> + <!-- + <tmpl_loop audiox> <h5><%! Language: !%></h5> <tmpl_var lang> <tmpl_if descr> <h5><%! Description: !%></h5> <tmpl_var descr> </tmpl_if> <br /> </tmpl_loop> + --> </div> </tmpl_if> <tmpl_if epgimages> |