diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo_commit.html.tmpl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/repo_commit.html.tmpl b/templates/repo_commit.html.tmpl index 03625aa..3deec3d 100644 --- a/templates/repo_commit.html.tmpl +++ b/templates/repo_commit.html.tmpl @@ -10,11 +10,15 @@ <table id="commit-info-table"> <thead> <tr class="title-row"> - <th colspan="2">Commit {{ .commit_id }}</th> + <th colspan="2">Commit Info</th> </tr> </thead> <tbody> <tr> + <th scope="row">ID</th> + <td>{{ .commit_id }}</td> + </tr> + <tr> <th scope="row">Author</th> <td>{{ .commit_object.Author.Name }} <<a href="mailto:{{ .commit_object.Author.Email }}">{{ .commit_object.Author.Email }}</a>></td> </tr> @@ -30,6 +34,10 @@ <th scope="row">Committer Date</th> <td>{{ .commit_object.Committer.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</td> </tr> + <tr> + <th scope="row">Message</th> + <td><pre>{{ .commit_object.Message }}</pre></td> + </tr> </tbody> </table> <pre>{{ .patch }}</pre> |