diff --git a/config.yaml b/config.yaml index 1a9c750..9d89d12 100644 --- a/config.yaml +++ b/config.yaml @@ -101,6 +101,18 @@ views: request: files: - web/layouts/support/support.html + group_module: + home: + files: + - web/layouts/group_module/home.html + create_group: + files: + - web/layouts/group_module/create_group.html + + display_group: + files: + - web/layouts/group_module/display_group.html + administration: home: files: diff --git a/web/layouts/group_module/create_group.html b/web/layouts/group_module/create_group.html new file mode 100644 index 0000000..4936a2a --- /dev/null +++ b/web/layouts/group_module/create_group.html @@ -0,0 +1,86 @@ +{{define "content"}} + + +
+

Groups > Créer un group

+
+ +
+
+
+
+
+

Nouveau groupe

+

Informations de base sur le groupe à créer

+
+
+
+
+ + +
+
+ + +
+
+
+ +
+ +
+
+ + + + +
+
+ +
+{{end}} \ No newline at end of file diff --git a/web/layouts/group_module/display_group.html b/web/layouts/group_module/display_group.html new file mode 100644 index 0000000..462f844 --- /dev/null +++ b/web/layouts/group_module/display_group.html @@ -0,0 +1,254 @@ +{{define "content"}} +
+

Gestion du groupe

+ +
+
+

+
+
+ +
+
+
+

Info du groupe

+
+
+
+
+
+
Nom
+
+ {{.ViewState.group.Data.name}}
+
+
+
Type
+
+ {{.ViewState.group.Data.type}}
+
+
+
+
+
+
+
+ + + + + +
+
+
+
+
+ + + + + + + + + + + + + +
+ Nom du bénéficiaire + + Téléphone + + Email +
+
+ + +
+
+
+
+
+
+ +
+
+
+
+

Ajouter un bénéficiaire

+
+
+
+ + +
+ + + + +
    + + + + +
+
+
+ + + +
+
+
+ +
+
+
+ +{{end}} \ No newline at end of file diff --git a/web/layouts/group_module/home.html b/web/layouts/group_module/home.html new file mode 100644 index 0000000..6d29350 --- /dev/null +++ b/web/layouts/group_module/home.html @@ -0,0 +1,60 @@ + + {{define "content"}} +
+

Gestion des groupes

+ +
+
+

+
+ +
+ +
+ +
+
+{{end}} \ No newline at end of file