diff options
Diffstat (limited to '')
-rw-r--r-- | templates/repo_index.tmpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/repo_index.tmpl b/templates/repo_index.tmpl index 3ce6d33..617b8ad 100644 --- a/templates/repo_index.tmpl +++ b/templates/repo_index.tmpl @@ -47,6 +47,11 @@ <tr class="title-row"> <th colspan="3">Recent commits (<a href="log/{{ if .ref_type }}?{{ .ref_type }}={{ .ref_name }}{{ end }}">see all</a>)</th> </tr> + <tr> + <th scope="col">Title</th> + <th scope="col">Author</th> + <th scope="col">Author Date</th> + </tr> </thead> <tbody> {{- range .commits }} @@ -69,6 +74,11 @@ <tr class="title-row"> <th colspan="3">/{{ if .ref_name }} on {{ .ref_name }}{{ end }}</th> </tr> + <tr> + <th scope="col">Mode</th> + <th scope="col">Filename</th> + <th scope="col">Size</th> + </tr> </thead> <tbody> {{- $ref_type := .ref_type }} |