2021-07-22 08:32:53 +00:00
|
|
|
{{ define "content" }}
|
|
|
|
|
2021-07-22 08:34:08 +00:00
|
|
|
<h3>Tracked Maps by <a href="https://osu.ppy.sh/u/{{ .Mapper.ID }}" target="_blank">{{ .Mapper.Username }}</a></h3>
|
2021-07-22 08:32:53 +00:00
|
|
|
|
|
|
|
<table class="table-auto">
|
|
|
|
<thead>
|
|
|
|
<th>Links</th>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Updated</th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ range .Beatmapsets }}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="https://osu.ppy.sh/s/{{ .ID }}" target="_blank">[osu]</a>
|
|
|
|
<a href="/map/{{ .MapperID }}/{{ .ID }}/versions">[versions]</a>
|
|
|
|
</td>
|
|
|
|
<td>{{ .Artist }} - {{ .Title }}</td>
|
|
|
|
<td>
|
|
|
|
{{ .LastUpdated | humanize }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{{ end }}
|