28 lines
618 B
Cheetah
28 lines
618 B
Cheetah
|
{{ template "header" . }}
|
||
|
|
||
|
<div class="row">
|
||
|
<h2>Projects</h2>
|
||
|
<a href="/project/add">Add a project</a>
|
||
|
|
||
|
<table class="twelve columns">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>Title</td>
|
||
|
<td>Created at</td>
|
||
|
<td>Last updated</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{ range $p := .projects }}
|
||
|
<tr>
|
||
|
<td><a href="/project/{{ $p.Id }}">{{ $p.Name }}</a></td>
|
||
|
<td>{{ $p.CreatedAt.Format "01/02/2006 15:04am" }}</td>
|
||
|
<td>{{ $p.UpdatedAt.Format "01/02/2006 15:04am" }}</td>
|
||
|
</tr>
|
||
|
{{ end }}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
{{ template "footer" . }}
|