diff options
author | Thorsten Ortlepp <post@ortlepp.eu> | 2024-11-07 22:43:22 +0100 |
---|---|---|
committer | Thorsten Ortlepp <post@ortlepp.eu> | 2024-11-07 23:01:45 +0100 |
commit | fbf0764d5c9bf3b967fc36f4d2bb70030ebdc5a9 (patch) | |
tree | 55cfcad3fdf640dc102d3b50e4cb4470a5ee552c /views/branch.html | |
parent | 4cce84502e206bab2942e33e73ba964f5664397c (diff) | |
download | git-arr-fork-fbf0764d5c9bf3b967fc36f4d2bb70030ebdc5a9.zip |
Fix templates for breaking change in Bottle 0.12+
Diffstat (limited to 'views/branch.html')
-rw-r--r-- | views/branch.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/branch.html b/views/branch.html index 799d040..da8d9d0 100644 --- a/views/branch.html +++ b/views/branch.html @@ -35,15 +35,15 @@ % end % more = more and offset + 1 < repo.info.max_pages -% include paginate more = more, offset = offset +% include('paginate.html', more = more, offset = offset) % kwargs = dict(repo=repo, commits=commits, % shorten=shorten, repo_root=relroot + "../..") -% include commit-list **kwargs +% include('commit-list.html', **kwargs) <p/> -% include paginate more = more, offset = offset +% include('paginate.html', more = more, offset = offset) </body> </html> |