Sfoglia il codice sorgente

Extend info for each file-commit

Full message and timestamp, as for the "main" commit.
Lucas Stadler 8 anni fa
parent
commit
c573d2ad00
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      quit.go

+ 2 - 2
quit.go

@ -681,8 +681,8 @@ var repoTmpl = template.Must(template.New("").Funcs(repoFuncs).Parse(`<!doctype
681 681
			{{ range $file := .Repo.Commit.Files false }}
682 682
			<tr class="file">
683 683
				<td class="file-name file-type-{{ $file.Type }}">{{ $file.Name }}</td>
684
				<td class="file-commit">{{ $file.Commit.Summary }}</td>
685
				<td class="file-date">{{ $file.Commit.Date.PrettyString }}</td>
684
				<td class="file-commit" title="{{ $file.Commit.Description }}">{{ $file.Commit.Summary }}</td>
685
				<td class="file-date" title="{{ $file.Commit.Date }}">{{ $file.Commit.Date.PrettyString }}</td>
686 686
			</tr>
687 687
			{{ end }}
688 688
		</table>