From 296ca9808f33eed9adbf61c6f40c33d1335082a6 Mon Sep 17 00:00:00 2001 From: soukainna Date: Tue, 8 Nov 2022 17:17:41 +0100 Subject: [PATCH] add file groupe --- config.yaml | 12 + web/layouts/group_module/create_group.html | 86 +++++++ web/layouts/group_module/display_group.html | 254 ++++++++++++++++++++ web/layouts/group_module/home.html | 60 +++++ 4 files changed, 412 insertions(+) create mode 100644 web/layouts/group_module/create_group.html create mode 100644 web/layouts/group_module/display_group.html create mode 100644 web/layouts/group_module/home.html 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