diff options
Diffstat (limited to 'templates/garage_website_list.html')
-rw-r--r-- | templates/garage_website_list.html | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/garage_website_list.html b/templates/garage_website_list.html index 6f5312f..ded8096 100644 --- a/templates/garage_website_list.html +++ b/templates/garage_website_list.html @@ -15,12 +15,24 @@ <th scope="col">URLs</th> </thead> <tbody> + {{ range $buck := .Key.Buckets }} + {{ if $buck.GlobalAliases }} <tr> <td> - <a href="/garage/website/b/aa">aa</a> + <a href="/garage/website/b/{{$buck.Id}}">{{$buck.Id}}</a> + </td> + <td> + {{ range $alias := $buck.GlobalAliases }} + {{ if contains $alias "." }} + https://{{ $alias }} + {{ else }} + https://{{ $alias }}.web.deuxfleurs.fr + {{ end }} + {{ end }} </td> - <td>aa</td> </tr> + {{ end }} + {{ end }} </tbody> </table> {{end}} |