You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2012/09/19 20:43:27 UTC

[33/50] git commit: [#1968] improve formatting around pagination on scm log pages

[#1968] improve formatting around pagination on scm log pages


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/43a34467
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/43a34467
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/43a34467

Branch: refs/heads/master
Commit: 43a344675ef79ea66a81e50e9a174c4596c83b39
Parents: 1d82572
Author: Dave Brondsema <db...@geek.net>
Authored: Mon Sep 10 15:40:27 2012 +0000
Committer: Dave Brondsema <db...@geek.net>
Committed: Mon Sep 10 15:40:27 2012 +0000

----------------------------------------------------------------------
 Allura/allura/templates/widgets/repo/log.html |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/43a34467/Allura/allura/templates/widgets/repo/log.html
----------------------------------------------------------------------
diff --git a/Allura/allura/templates/widgets/repo/log.html b/Allura/allura/templates/widgets/repo/log.html
index fe81dc6..86d5095 100644
--- a/Allura/allura/templates/widgets/repo/log.html
+++ b/Allura/allura/templates/widgets/repo/log.html
@@ -1,10 +1,5 @@
 {% from 'allura:templates/jinja_master/lib.html' import email_gravatar, abbr_date with context %}
 <div>
-  {% if show_paging %}
-    <div class="grid-19" style="clear:both">
-      {{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
-    </div>
-  {% endif %}
   <table style="clear:both">
     <thead>
       <tr>
@@ -44,9 +39,7 @@
     </tbody>
   </table>
   {% if show_paging %}
-    <div class="grid-19" style="clear:both">
       {{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
       {{widget.fields['page_size'].display(limit=limit, page=page, count=count)}}
-    </div>
   {% endif %}
 </div>