manage.view 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @Title{Gallery}@
  2. @CSSSmall{
  3. @media(orientation:portrait){
  4. td:nth-child(3), th:nth-child(3){
  5. display:none;
  6. }
  7. }
  8. td:first-child, th:first-child{
  9. display:none;
  10. }
  11. table{
  12. width:100%;
  13. }
  14. td:last-child,th:last-child,td:nth-child(3), th:nth-child(3){
  15. width:1px;
  16. }
  17. }@
  18. @ButtonsRight{
  19. <button onclick="Navigate('/gallery/createalbum/')" title="Create Album">
  20. <img src="/images/add_album.svg" alt="Add Album" />
  21. </button>
  22. }@
  23. @Body{
  24. <form action="" method="post" id="manageForm">
  25. <input type="hidden" name="formSubmitted" value="yes" />
  26. <table>
  27. <tr>
  28. <th>ID</th>
  29. <th>Title</th>
  30. <th>Timestamp</th>
  31. <th>Actions</th>
  32. </tr>
  33. <?php foreach ($albums as $album){?>
  34. <tr>
  35. <td><?=$album->AlbumId?></td>
  36. <td><a href="/gallery/view/<?=$album->AlbumUrl?>"><?=$album->AlbumTitle?></a></td>
  37. <td><?=$album->AlbumTimestamp?></td>
  38. <td>
  39. <button value="<?=$album->AlbumId?>" name="delete" title="Delete">
  40. <img src="/images/delete.svg" alt="Delete" />
  41. </button>
  42. <button value="/blog/edit/<?=$album->AlbumId?>" name="edit" title="Edit" class="jsNav">
  43. <img src="/images/edit.svg" alt="Edit" />
  44. </button>
  45. </td>
  46. </tr>
  47. <?php } ?>
  48. </table>
  49. </form>
  50. }@