aboutsummaryrefslogtreecommitdiff
path: root/views/summary.html
diff options
context:
space:
mode:
authorThorsten Ortlepp <post@ortlepp.eu>2024-11-07 22:43:22 +0100
committerThorsten Ortlepp <post@ortlepp.eu>2024-11-07 23:01:45 +0100
commitfbf0764d5c9bf3b967fc36f4d2bb70030ebdc5a9 (patch)
tree55cfcad3fdf640dc102d3b50e4cb4470a5ee552c /views/summary.html
parent4cce84502e206bab2942e33e73ba964f5664397c (diff)
downloadgit-arr-fork-fbf0764d5c9bf3b967fc36f4d2bb70030ebdc5a9.zip
Fix templates for breaking change in Bottle 0.12+
Diffstat (limited to 'views/summary.html')
-rw-r--r--views/summary.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/views/summary.html b/views/summary.html
index dd310ad..905f2ee 100644
--- a/views/summary.html
+++ b/views/summary.html
@@ -42,14 +42,14 @@
% kwargs = dict(repo = repo, start_ref = "refs/heads/master",
% limit = repo.info.commits_in_summary,
% shorten = shorten, repo_root = ".", offset = 0)
-% include commit-list **kwargs
+% include('commit-list.html', **kwargs)
<hr/>
<div class="toggable-title" onclick="toggle('ls')">
<a href="b/master/t/">tree (master)</a>
</div>
% kwargs = dict(repo = repo, tree=repo.tree("master"),
% treeroot="b/master/t", dirname=smstr.from_url(""))
-% include tree-list **kwargs
+% include('tree-list.html', **kwargs)
<hr/>
% end
@@ -60,14 +60,14 @@
% kwargs = dict(repo = repo, start_ref = "refs/heads/main",
% limit = repo.info.commits_in_summary,
% shorten = shorten, repo_root = ".", offset = 0)
-% include commit-list **kwargs
+% include('commit-list.html', **kwargs)
<hr/>
<div class="toggable-title" onclick="toggle('ls')">
<a href="b/main/t/">tree (main)</a>
</div>
% kwargs = dict(repo = repo, tree=repo.tree("main"),
% treeroot="b/main/t", dirname=smstr.from_url(""))
-% include tree-list **kwargs
+% include('tree-list.html', **kwargs)
<hr/>
% end