1<!DOCTYPE html>
2<html>
3 <head>
4 <title>{{.Repo.Name}} - Markers</title>
5 <link rel="stylesheet" href="/static/style.css">
6 <link rel="shortcut icon" href="/static/favicon.png">
7 </head>
8 <body>
9 {{template "nav-main.html" .}}
10
11 <main>
12 {{template "nav-repository.html" .}}
13
14 <table>
15 <thead>
16 <tr>
17 <th>type</th>
18 <th>location</th>
19 <th>content</th>
20 </tr>
21 </thead>
22 <tbody>
23 {{range .Markers}}
24 <tr>
25 <td class="text-lowercase">{{.Type}}</td>
26 <td><a href="/r/{{$.Repo.Name}}/blob/{{.FilePath}}?ref={{$.CurrentRef}}#L{{.Line}}">{{.FilePath}}:{{.Line}}</a></td>
27 <td><pre>{{.Content}}</pre></td>
28 </tr>
29 {{else}}
30 <tr>
31 <td colspan="3">No todo or fixme markers found in the repository.</td>
32 </tr>
33 {{end}}
34 </tbody>
35 </table>
36 </main>
37
38 {{template "footer.html" .}}
39 </body>
40</html>