summaryrefslogtreecommitdiffabout
path: root/ui-log.c
Side-by-side diff
Diffstat (limited to 'ui-log.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-log.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ui-log.c b/ui-log.c
index 701c392..4d2c2e0 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -84,2 +84,7 @@ static void cgit_print_commit_shortlog(struct commit *commit)
html_txt(author);
+ html("</td><td><a href='");
+ html_attr(cgit_pageurl(cgit_query_repo, "tree",
+ fmt("id=%s",
+ sha1_to_hex(commit->tree->object.sha1))));
+ html("'>tree</a>");
html("</td></tr>\n");
@@ -104,3 +109,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt)
html("<table class='list'>");
- html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n");
+ html("<tr><th>Date</th><th>Message</th><th>Author</th><th>Link</th></tr>\n");
while ((commit = get_revision(&rev)) != NULL && n++ < 100) {