James Moger
2014-09-29 872cf0f29c84b65489ae1175a71e07807d0c630e
commit | author | age
a4d249 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
JM 2 <html xmlns="http://www.w3.org/1999/xhtml"  
3       xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
4       xml:lang="en"  
5       lang="en"> 
6
7 <body>
8 <wicket:panel>
9
6662e3 10     <div wicket:id="managementPanel">[management links]</div>
a4d249 11
JM 12     <table class="repositories">
13         <span wicket:id="headerContent"></span>
14         <tbody>        
15                <tr wicket:id="row">
16                    <span wicket:id="rowContent"></span>
17                </tr>
18         </tbody>
19     </table>
20     
21     <wicket:fragment wicket:id="adminLinks">
22         <!-- page nav links -->    
23         <div class="admin_nav">
872cf0 24             <a class="btn btn-mini" wicket:id="clearCache">
fee060 25                 <i class="icon icon-remove"></i>
JM 26                 <wicket:message key="gb.clearCache"></wicket:message>
27             </a>            
872cf0 28             <a class="btn btn-mini" wicket:id="newRepository">
fee060 29                 <i class="icon icon-plus-sign"></i>
a4d249 30                 <wicket:message key="gb.newRepository"></wicket:message>
JM 31             </a>
32         </div>    
33     </wicket:fragment>
34     
6662e3 35     <wicket:fragment wicket:id="personalLinks">
JM 36         <!-- page nav links -->    
37         <div class="admin_nav">
872cf0 38             <a class="btn btn-mini" wicket:id="newRepository">
6662e3 39                 <i class="icon icon-plus-sign"></i>
JM 40                 <wicket:message key="gb.newRepository"></wicket:message>
41             </a>
42         </div>    
43     </wicket:fragment>
44
a4d249 45     <wicket:fragment wicket:id="flatRepositoryHeader">
JM 46         <tr>
47             <th class="left" wicket:id="orderByRepository">
0cf876 48                 <img style="vertical-align: middle;" src="git-black-16x16.png"/>
a4d249 49                 <wicket:message key="gb.repository">Repository</wicket:message>
JM 50             </th>
62cec2 51             <th class="hidden-phone" wicket:id="orderByDescription"><wicket:message key="gb.description">Description</wicket:message></th>
JM 52             <th class="hidden-tablet hidden-phone" wicket:id="orderByOwner"><wicket:message key="gb.owner">Owner</wicket:message></th>
53             <th class="hidden-phone"></th>
a4d249 54             <th wicket:id="orderByDate"><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
51c923 55             <th class="right hidden-phone"></th>
a4d249 56         </tr>
JM 57     </wicket:fragment>
58     
59     <wicket:fragment wicket:id="groupRepositoryHeader">
60         <tr>
61             <th class="left">
0cf876 62                 <img style="vertical-align: middle;" src="git-black-16x16.png"/>
a4d249 63                 <wicket:message key="gb.repository">Repository</wicket:message>
JM 64             </th>
62cec2 65             <th class="hidden-phone" ><span><wicket:message key="gb.description">Description</wicket:message></span></th>
JM 66             <th class="hidden-tablet hidden-phone"><span><wicket:message key="gb.owner">Owner</wicket:message></span></th>
67             <th class="hidden-phone"></th>
a4d249 68             <th><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
51c923 69             <th class="right hidden-phone"></th>
a4d249 70         </tr>
JM 71     </wicket:fragment>
72     
73     <wicket:fragment wicket:id="groupRepositoryRow">
13a3f5 74         <td colspan="1"><span wicket:id="groupName">[group name]</span></td>
1e1b85 75         <td colspan="6" style="padding: 2px;"><span class="hidden-phone" style="font-weight:normal;color:#666;" wicket:id="groupDescription">[description]</span></td>
a4d249 76     </wicket:fragment>
JM 77         
78     <wicket:fragment wicket:id="repositoryRow">
349656 79         <td class="left" style="padding-left:3px;" ><b><span class="repositorySwatch" wicket:id="repositorySwatch"></span></b> <span style="padding-left:3px;" wicket:id="repositoryName">[repository name]</span></td>
62cec2 80         <td class="hidden-phone"><span class="list" wicket:id="repositoryDescription">[repository description]</span></td>
JM 81         <td class="hidden-tablet hidden-phone author"><span wicket:id="repositoryOwner">[repository owner]</span></td>
c44dd0 82         <td class="hidden-phone" style="text-align: right;padding-right:10px;"><img class="inlineIcon" wicket:id="sparkleshareIcon" /><img class="inlineIcon" wicket:id="mirrorIcon" /><img class="inlineIcon" wicket:id="forkIcon" /><img class="inlineIcon" wicket:id="frozenIcon" /><img class="inlineIcon" wicket:id="federatedIcon" /><img class="inlineIcon" wicket:id="accessRestrictionIcon" /></td>
a4d249 83         <td><span wicket:id="repositoryLastChange">[last change]</span></td>
51c923 84         <td class="rightAlign hidden-phone" style="text-align: right;padding-right:15px;"><span style="font-size:0.8em;" wicket:id="repositorySize">[repository size]</span></td>
a4d249 85     </wicket:fragment>
JM 86     
87 </wicket:panel>
88 </body>
89 </html>