12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @Title{Gallery}@
- @CSSSmall{
- @media(orientation:portrait){
- td:nth-child(3), th:nth-child(3){
- display:none;
- }
- }
- td:first-child, th:first-child{
- display:none;
- }
-
- table{
- width:100%;
- }
-
- td:last-child,th:last-child,td:nth-child(3), th:nth-child(3){
- width:1px;
- }
- }@
- @ButtonsRight{
- <button onclick="Navigate('/gallery/createalbum/')" title="Create Album">
- <img src="/images/add_album.svg" alt="Add Album" />
- </button>
- }@
- @Body{
- <form action="" method="post" id="manageForm">
- <input type="hidden" name="formSubmitted" value="yes" />
- <table>
- <tr>
- <th>ID</th>
- <th>Title</th>
- <th>Timestamp</th>
- <th>Actions</th>
- </tr>
- <?php foreach ($albums as $album){?>
- <tr>
- <td><?=$album->AlbumId?></td>
- <td><a href="/gallery/view/<?=$album->AlbumUrl?>"><?=$album->AlbumTitle?></a></td>
- <td><?=$album->AlbumTimestamp?></td>
- <td>
- <button value="<?=$album->AlbumId?>" name="delete" title="Delete">
- <img src="/images/delete.svg" alt="Delete" />
- </button>
- <button value="/blog/edit/<?=$album->AlbumId?>" name="edit" title="Edit" class="jsNav">
- <img src="/images/edit.svg" alt="Edit" />
- </button>
- </td>
- </tr>
- <?php } ?>
- </table>
- </form>
- }@
|