From f66e89662c091e082bd1d2feb6ac91513ccff273 Mon Sep 17 00:00:00 2001 From: Rafael Cavazin <rafaelcavazin@gmail.com> Date: Sun, 21 Jul 2013 09:59:00 -0400 Subject: [PATCH] Merge branch 'master' of https://github.com/gitblit/gitblit --- src/main/java/com/gitblit/wicket/pages/ProjectsPage.html | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gitblit/wicket/pages/ProjectsPage.html b/src/main/java/com/gitblit/wicket/pages/ProjectsPage.html new file mode 100644 index 0000000..2d446ec --- /dev/null +++ b/src/main/java/com/gitblit/wicket/pages/ProjectsPage.html @@ -0,0 +1,37 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd" + xml:lang="en" + lang="en"> + +<body> +<wicket:extend> +<div class="container"> + + <table class="repositories"> + <thead> + <tr> + <th class="left"> + <i class="icon-folder-close" ></i> + <wicket:message key="gb.project">Project</wicket:message> + </th> + <th class="hidden-phone" ><span><wicket:message key="gb.description">Description</wicket:message></span></th> + <th class="hidden-phone"><wicket:message key="gb.repositories">Repositories</wicket:message></th> + <th><wicket:message key="gb.lastChange">Last Change</wicket:message></th> + <th class="right"></th> + </tr> + </thead> + <tbody> + <tr wicket:id="project"> + <td class="left" style="padding-left:3px;" ><span style="padding-left:3px;" wicket:id="projectTitle">[project title]</span></td> + <td class="hidden-phone"><span class="list" wicket:id="projectDescription">[project description]</span></td> + <td class="hidden-phone" style="padding-right:15px;"><span style="font-size:0.8em;" wicket:id="repositoryCount">[repository count]</span></td> + <td><span wicket:id="projectLastChange">[last change]</span></td> + <td class="rightAlign"></td> + </tr> + </tbody> + </table> +</div> +</wicket:extend> +</body> +</html> \ No newline at end of file -- Gitblit v1.9.1