summaryrefslogtreecommitdiffstats
path: root/gitsrht/templates/summary.html
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-01 15:21:59 -0400
committerDrew DeVault <sir@cmpwn.com>2018-10-01 15:21:59 -0400
commitc6533c216aa402ad33ca0c9a8534836f8f13034d (patch)
tree6070e3094712f59acdc5b60cd02adf6e223b8b86 /gitsrht/templates/summary.html
parentd40fe4e8f008d10a445c49a5fca3e184469163c8 (diff)
Implement commit view
Diffstat (limited to 'gitsrht/templates/summary.html')
-rw-r--r--gitsrht/templates/summary.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/gitsrht/templates/summary.html b/gitsrht/templates/summary.html
index 89dda4b..19a565d 100644
--- a/gitsrht/templates/summary.html
+++ b/gitsrht/templates/summary.html
@@ -13,7 +13,9 @@
<div class="col-md-6">
<div class="event-list" style="margin-bottom: 0.5rem">
{% for c in commits %}
- {{ utils.commit_event(repo, c, commit_time, trim_commit) }}
+ <div class="event">
+ {{ utils.commit_event(repo, c, commit_time, trim_commit) }}
+ </div>
{% endfor %}
</div>
</div>