summaryrefslogtreecommitdiff
path: root/pages/timerconflicts.ecpp
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-02-17 14:00:42 +0100
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-02-17 14:00:42 +0100
commitf97fe9374051962b903ce82e592c929f5eb6ac39 (patch)
tree9026797f7aac18f4a3980eee6301e5b25bae1638 /pages/timerconflicts.ecpp
parenta0759ebfa6f30c26139907e01b905a0aa22c34ec (diff)
downloadvdr-plugin-live-f97fe9374051962b903ce82e592c929f5eb6ac39.tar.gz
vdr-plugin-live-f97fe9374051962b903ce82e592c929f5eb6ac39.tar.bz2
display of "no timer conflicts"
Diffstat (limited to 'pages/timerconflicts.ecpp')
-rw-r--r--pages/timerconflicts.ecpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/timerconflicts.ecpp b/pages/timerconflicts.ecpp
index c69394f..58b1993 100644
--- a/pages/timerconflicts.ecpp
+++ b/pages/timerconflicts.ecpp
@@ -40,6 +40,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<& pageelems.logo &>
<& menu active=("timersconflicts")>
<div class="inhalt">
+% if (timerConflicts.size() == 0) {
+ <$ tr("No timer conflicts") $>
+% } else {
<table class="listing" cellspacing="0" cellpadding="0">
<%cpp>
for (TimerConflicts::iterator conflict = timerConflicts.begin(); conflict != timerConflicts.end(); ++conflict) {
@@ -119,6 +122,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
}
</%cpp>
</table>
+% }
</div>
</body>
</html>