Show More
@@ -620,8 +620,14 b' def bookmarks(web, req, tmpl):' | |||
|
620 | 620 | "date": web.repo[n].date(), |
|
621 | 621 | "node": hex(n)} |
|
622 | 622 | |
|
623 | if i: | |
|
624 | latestrev = i[0][1] | |
|
625 | else: | |
|
626 | latestrev = -1 | |
|
627 | ||
|
623 | 628 | return tmpl("bookmarks", |
|
624 | 629 | node=hex(web.repo.changelog.tip()), |
|
630 | lastchange=[{"date": web.repo[latestrev].date()}], | |
|
625 | 631 | entries=lambda **x: entries(latestonly=False, **x), |
|
626 | 632 | latestentry=lambda **x: entries(latestonly=True, **x)) |
|
627 | 633 |
General Comments 0
You need to be logged in to leave comments.
Login now