From f22a0633d08e38ac4bf92b5165a708e11b4d6598 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Wed, 03 Oct 2012 17:31:37 -0400 Subject: [PATCH] Implemented support for toggling User.canFork in Manager --- src/com/gitblit/wicket/panels/HistoryPanel.html | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/com/gitblit/wicket/panels/HistoryPanel.html b/src/com/gitblit/wicket/panels/HistoryPanel.html index ad0ff2f..d81d948 100644 --- a/src/com/gitblit/wicket/panels/HistoryPanel.html +++ b/src/com/gitblit/wicket/panels/HistoryPanel.html @@ -7,20 +7,20 @@ <body> <wicket:panel> - <!-- header --> - <div class="header" wicket:id="header">[history header]</div> + <!-- commit header --> + <div wicket:id="commitHeader">[commit header]</div> <!-- breadcrumbs --> <div wicket:id="breadcrumbs">[breadcrumbs]</div> - <table style="width:100%" class="pretty"> + <table class="pretty"> <tbody> <tr wicket:id="commit"> <td class="date"><span wicket:id="commitDate">[commit date]</span></td> - <td class="author"><span wicket:id="commitAuthor">[commit author]</span></td> - <td><span wicket:id="commitShortMessage">[commit short message]</span></td> - <td class="rightAlign"><span wicket:id="commitRefs">[commit refs]</span></td> - <td class="rightAlign"> + <td class="icon"><img wicket:id="commitIcon" /></td> + <td class="hidden-phone author"><span wicket:id="commitAuthor">[commit author]</span></td> + <td class="message"><table class="nestedTable"><tr><td><span style="vertical-align:middle;" wicket:id="commitShortMessage">[commit short message]</span></td><td><div style="text-align:right;" wicket:id="commitRefs">[commit refs]</div></td></tr></table></td> + <td class="hidden-phone rightAlign"> <span wicket:id="historyLinks">[history links]</span> </td> </tr> -- Gitblit v1.9.1