aboutsummaryrefslogtreecommitdiff
path: root/templates/garage_website_list.html
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-04-18 19:37:51 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-04-18 19:37:51 +0200
commit37b769491028a86d697e8d18be09b6e0c1046046 (patch)
tree04c874f3b82afd81f2c9b27fd4b164e46711ce98 /templates/garage_website_list.html
parent02670ba6a60af8db1818d6d3adaafc7810d14689 (diff)
downloadguichet-37b769491028a86d697e8d18be09b6e0c1046046.tar.gz
guichet-37b769491028a86d697e8d18be09b6e0c1046046.zip
WIP templates
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}}