aboutsummaryrefslogtreecommitdiff
path: root/templates/garage_website_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/garage_website_list.html')
-rw-r--r--templates/garage_website_list.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/garage_website_list.html b/templates/garage_website_list.html
new file mode 100644
index 0000000..0931daf
--- /dev/null
+++ b/templates/garage_website_list.html
@@ -0,0 +1,25 @@
+{{define "title"}}Sites webs |{{end}}
+
+{{define "body"}}
+
+<div class="d-flex">
+ <h4>Sites webs</h4>
+ <a class="ml-auto btn btn-success" href="/garage/website/new">Nouveau site web</a>
+ <a class="ml-4 btn btn-info" href="/">Menu principal</a>
+</div>
+
+<table class="table mt-4">
+ <thead>
+ <th scope="col">ID</th>
+ <th scope="col">URLs</th>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ <a href="/garage/website/b/aa">aa</a>
+ </td>
+ <td>aa</td>
+ </tr>
+ </tbody>
+</table>
+{{end}}