Introducing a very barebones admin UI for managing buckets. I would
[catagits/App-IdiotBox.git] / share / skin / presentingperl / html / admin.html
1         <div id="main-content">
2
3             <h2 class="author-name">
4               List of available buckets
5             </h2>
6             <p>
7               Add a new bucket
8             </p>
9             <form class="add-bucket-form" action="" method="POST">
10               <label for="new_name">Enter a name for this bucket</label> <input type="text" name="new_name"/>
11               <br /><br />
12               <label for="new_slug">Enter a relative URI for this bucket</label> <input type="text" name="new_slug"/>
13               <br /><br />
14               <input type="submit" value="Create Bucket"/>
15             </form>
16             <span class="error-text">Some error</span>
17             <p>
18               Below is a list of existing buckets. Click on the buckets to change details about them, and 'Delete' to remove them.
19             </p>
20             <ul id="bucket-list">
21               <li class="bucket">
22                 <a class="edit-link">
23                 <span class="bucket-slug">Some Random Event</span> -
24                 <span class="bucket-name">Some Random Event</span>
25                 </a>
26                 <a class="delete-link">Delete</a>
27                 </a>
28               </li>
29             </ul>
30           </div>
31
32           <div id="custom-html">        
33             <h1>
34               <span class="bucket-name">THIS IZ MAI BUKKIT</span>
35             </h1>
36             <ul id="video-list">
37               <li class="video">
38                 <a class="video-link"><span class="video-name">Really Imaginative Video Name</span> (<span class="video-author">Some Guy</span>)</a>
39               </li>
40             </ul>
41           </div>
42           
43 <!-- END MAIN CONTENT -->        
44         </div>