You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
1.4 KiB

<h1>{$page->title}</h1>
{if $movielist}
<div style="float:right;">
<form name="moviesearch" action="">
<label for="movietitle">Title</label>
<input id="movietitle" type="text" name="movietitle" value="{$movietitle}" size="15" />
&nbsp;&nbsp;
<input type="submit" value="Go" />
</form>
</div>
{$pager}
<br/><br/>
<table style="width:100%;margin-top:10px;" class="data Sortable highlight">
<tr>
<th>IMDB ID</th>
<th>TMDb ID</th>
<th>Title</th>
<th>Cover</th>
<th>Backdrop</th>
<th>Created</th>
<th></th>
</tr>
{foreach from=$movielist item=movie}
<tr class="{cycle values=",alt"}">
<td class="less"><a href="http://www.imdb.com/title/tt{$movie.imdbid}" title="View in IMDB">{$movie.imdbid}</a></td>
<td class="less"><a href="http://www.themoviedb.org/movie/{$movie.tmdbid}" title="View in TMDb">{$movie.tmdbid}</a></td>
<td><a title="Edit" href="{$smarty.const.WWW_TOP}/movie-edit.php?id={$movie.imdbid}">{$movie.title}({$movie.year})</a></td>
<td class="less">{$movie.cover}</td>
<td class="less">{$movie.backdrop}</td>
<td class="less">{$movie.createddate|date_format}</td>
<td class="less"><a title="Update" href="{$smarty.const.WWW_TOP}/movie-add.php?id={$movie.imdbid}&amp;update=1">Update</a></td>
</tr>
{/foreach}
</table>
{else}
<p>No Movies available.</p>
{/if}