Private GIT

Skip to content
Snippets Groups Projects
Commit f110899c authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Merge pull request #153 from generica/airtime

Only show airing data if it exists
parents e6054b9c 57bb88a3
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,13 @@
<div id="summary" class="align-left">
<table class="infoTable" cellspacing="1" border="0" cellpadding="0">
#if $show.network and $show.airs:
<tr><td class="showLegend">Airs: </td><td>$show.airs on $show.network</td></tr>
#else if $show.network:
<tr><td class="showLegend">Airs: </td><td>$show.network</td></tr>
#else if $show.airs:
<tr><td class="showLegend">Airs: </td><td>$show.airs</td></tr>
#end if
<tr><td class="showLegend">Status: </td><td>$show.status</td></tr>
#if $showLoc[1]:
<tr><td class="showLegend">Location: </td><td>$showLoc[0]</td></tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment