2023-04-18 20:09:56 +00:00
{{define "title"}}Inspecter le site web |{{end}}
2023-07-23 15:18:29 +00:00
{{define "admenu"}}
{{if .Login.CanAdmin}}
< li > < a href = "/admin/activate" > Administrer LDAP< / a >
< ul class = "submenu" >
< li > < a href = "/admin/activate" > Activer des Utilisateur·ices< / a > < / li >
< li > < a href = "/admin/users" > Utilisateur·ices< / a > < / li >
< li > < a href = "/admin/groups" > Groupes< / a > < / li >
< / ul >
< / li >
{{end}}
{{if .Login}}
< li > < a href = "/logout" > Se déconnecter< / a > < / li >
{{else}}
2023-07-24 08:52:50 +00:00
< li > < < a href = "#" > Se connecter< / a >
2023-07-23 15:18:29 +00:00
< ul class = "submenu" >
< li > < a href = "/" > Se connecter< / a > < / li >
< li > < a href = "/gpas" > Mal de passe oublié< / a > < / li >
< li > < a href = "/invite/new_account" > S'enregistrer< / a > < / li >
< / ul >
< / li >
{{end}}
{{end}}
2023-04-18 20:09:56 +00:00
{{define "body"}}
< div class = "d-flex" >
< h4 > Inspecter le site web< / h4 >
< a class = "ml-auto btn btn-link" href = "/garage/key" > Mes identifiants< / a >
< a class = "ml-4 btn btn-success" href = "/garage/website/new" > Nouveau site web< / a >
< a class = "ml-4 btn btn-info" href = "/garage/website" > Mes sites webs< / a >
< / div >
< table class = "table mt-4" >
< tbody >
< tr >
< th scope = "row" > ID< / th >
2023-04-19 12:58:39 +00:00
< td > {{ .Bucket.Id }}< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< tr >
< th scope = "row" > URLs< / th >
2023-04-19 12:58:39 +00:00
< td >
{{ range $alias := .Bucket.GlobalAliases }}
{{ if contains $alias "." }}
https://{{ $alias }}
{{ else }}
2023-07-17 09:18:21 +00:00
https://{{ $alias }}.web.resdigita.org
2023-04-19 12:58:39 +00:00
{{ end }}
{{ end }}
< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< tr >
< th scope = "row" > Document d'index< / th >
2023-04-19 12:58:39 +00:00
< td > {{ .IndexDoc }}< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< tr >
< th scope = "row" > Document d'erreur< / th >
2023-04-19 12:58:39 +00:00
< td > {{ .ErrorDoc }}< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< tr >
< th scope = "row" > Nombre de fichiers< / th >
2023-04-19 12:58:39 +00:00
< td > {{ .Bucket.Objects }} / {{ .MaxObjects }}< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< tr >
< th scope = "row" > Espace utilisé< / th >
2023-04-19 12:58:39 +00:00
< td > {{ .Bucket.Bytes }} / {{ .MaxSize }} octets< / td >
2023-04-18 20:09:56 +00:00
< / tr >
< / tbody >
< / table >
< h4 > Configurer le nom de domaine< / h4 >
2023-04-19 12:58:39 +00:00
{{ range $alias := .Bucket.GlobalAliases }}
{{ if contains $alias "." }}
2023-07-17 09:18:21 +00:00
< p > Le nom de domaine {{ $alias }} n'est pas géré par Deuxfleurs, il vous revient donc de configurer la zone DNS. Vous devez ajouter une entrée < code > CNAME garage.resdigita.org< / code > ou < code > ALIAS garage.resdigita.org< / code > auprès de votre hébergeur DNS, qui est souvent aussi le bureau d'enregistrement (eg. Gandi, GoDaddy, BookMyName, etc.).< / p >
2023-04-19 12:58:39 +00:00
{{ else }}
2023-07-17 09:18:21 +00:00
< p > Le nom de domaine https://{{ $alias }}.web.resdigita.org est fourni par Deuxfleurs, il n'y a pas de configuration à faire.< / p >
2023-04-19 12:58:39 +00:00
{{ end }}
{{ end }}
2023-04-18 20:09:56 +00:00
{{end}}