diff --git a/pkg/agecemorg/handler.go b/pkg/agecemorg/handler.go
index 5f8b886..69643ce 100644
--- a/pkg/agecemorg/handler.go
+++ b/pkg/agecemorg/handler.go
@@ -2,6 +2,7 @@ package agecemorg
import (
"context"
+ "encoding/json"
"fmt"
"io"
"log"
@@ -11,6 +12,7 @@ import (
"codeberg.org/vlbeaudoin/pave/v2"
"codeberg.org/vlbeaudoin/voki/v3"
+ "git.agecem.com/agecem/agecem-org/v3/ui"
"github.com/labstack/echo/v4"
"github.com/minio/minio-go/v7"
)
@@ -590,7 +592,24 @@ func HandleActualiteArticle(c echo.Context) error {
*/
func HandleVieEtudiante(c echo.Context) error {
- return c.Render(http.StatusOK, "vie-etudiante-html", nil)
+ var data struct {
+ Data struct {
+ Organismes map[string][]struct {
+ Nom string
+ Local string
+ Poste string
+ Statut string
+ }
+ }
+ Error string
+ }
+
+ if err := json.Unmarshal([]byte(ui.OrganismesJSON()), &data.Data.Organismes); err != nil {
+ data.Error = err.Error()
+ log.Println("json error in vie-etudiante:", err)
+ }
+
+ return c.Render(http.StatusOK, "vie-etudiante-html", data)
}
func HandleVieEtudianteOrganisme(c echo.Context) error {
diff --git a/ui/ui.go b/ui/ui.go
index c69ecf5..be54960 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -19,6 +19,11 @@ import (
//go:embed *.html
var htmlFS embed.FS
+//go:embed vie-etudiante-organismes.json
+var organismesJSON string
+
+func OrganismesJSON() string { return organismesJSON }
+
type Renderer struct {
templates *template.Template
}
diff --git a/ui/vie-etudiante-organismes.json b/ui/vie-etudiante-organismes.json
new file mode 100644
index 0000000..c635eff
--- /dev/null
+++ b/ui/vie-etudiante-organismes.json
@@ -0,0 +1,34 @@
+{
+ "Associations de programme": [
+ { "Nom": "ADEPT", "Local": "F-045", "Poste": "2286", "Statut": "Actif" },
+ { "Nom": "ASI", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "ATEE", "Local": "F-027d", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "ATIM", "Local": "F-011b", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "LAC", "Local": "A-125s", "Poste": "2873", "Statut": "Actif" },
+ { "Nom": "PAPI", "Local": "F-023", "Poste": "2795", "Statut": "Actif" },
+ { "Nom": "TGE", "Local": "C-063", "Poste": "2638", "Statut": "Actif" }
+ ],
+ "Comités": [
+ { "Nom": "ASEG", "Local": "B-06", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "CAP", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "CFEM", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "CIC", "Local": "F-027c", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "Comité Mob", "Local": "N/A", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "CÉSI", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "ESPACE", "Local": "F-011d", "Poste": "2418", "Statut": "Actif" },
+ { "Nom": "EUMC-CEM", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "Friperie", "Local": "F-027a", "Poste": "2248", "Statut": "Actif" }
+ ],
+ "Organismes thématiques": [
+ { "Nom": "AME", "Local": "C-060", "Poste": "7919", "Statut": "Actif" },
+ { "Nom": "BEAM", "Local": "F-024a", "Poste": "5930", "Statut": "Actif" },
+ { "Nom": "Club Aventurier", "Local": "F-011b", "Poste": "2418", "Statut": "Actif" },
+ { "Nom": "MAEL", "Local": "F-027b", "Poste": "6438", "Statut": "Actif" },
+ { "Nom": "Montpetit Donjon", "Local": "C-067", "Poste": "2299", "Statut": "Actif" },
+ { "Nom": "MotDit", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" },
+ { "Nom": "OGRE", "Local": "F-011c", "Poste": "2248", "Statut": "Actif" },
+ { "Nom": "ORGASME", "Local": "F-049", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "RECEM", "Local": "A-125s", "Poste": "N/A", "Statut": "Actif" },
+ { "Nom": "Équipe Santé", "Local": "F-011", "Poste": "2361", "Statut": "Actif" }
+ ]
+}
diff --git a/ui/vie-etudiante.html b/ui/vie-etudiante.html
index 54046bd..d9f064b 100644
--- a/ui/vie-etudiante.html
+++ b/ui/vie-etudiante.html
@@ -13,7 +13,12 @@
{{ template "header-html" }}
Vie étudiante
-
Organismes thématiques
+
+ {{if not .Data.Organismes}}
+
Liste des organismes étudiants non-disponible, merci de rééssayer plus tard.
+ {{else}}
+ {{range $categorie, $organismes := .Data.Organismes}}
+
{{$categorie}}
Nom |
@@ -21,193 +26,31 @@
Poste |
Statut |
-
- AME |
- C-060 |
- 7919 |
- Actif |
-
-
- BEAM |
- F-024a |
- 5930 |
- Actif |
-
-
- Club Aventurier |
- F-011b |
- 2418 |
- Actif |
-
-
- Équipe Santé |
- F-011 |
- 2361 |
- Actif |
-
-
- Montpetit Donjon |
- C-067 |
- 2299 |
- Actif |
-
-
- MAEL |
- F-027b |
- 6438 |
- Actif |
-
-
- OGRE |
- F-011c |
- 2248 |
- Actif |
-
-
- RECEM |
- A-125s |
- N/A |
- Actif |
-
-
- ORGASME |
- F-049 |
- N/A |
- Actif |
-
+ {{range $organismes}}
+ {{if eq .Statut "Inactif"}}
- SOI |
- N/A |
- N/A |
- Inactif |
-
-
- MotDit |
- N/A |
- N/A |
- Inactif |
+ {{.Nom}} |
+ {{.Local}} |
+ {{.Poste}} |
+ {{.Statut}} |
+ {{else}}
+
+ {{.Nom}} |
+ {{.Local}} |
+ {{.Poste}} |
+ {{.Statut}} |
+ {{end}}
+ {{end}}
-
Associations de programme
-
-
- Nom |
- Local |
- Poste |
- Statut |
-
-
- ADEPT |
- F-045 |
- 2286 |
- Actif |
-
-
- ATIM |
- F-011b |
- N/A |
- Actif |
-
-
- LAC |
- A-125s |
- 2873 |
- Actif |
-
-
- PAPI |
- F-023 |
- 2795 |
- Actif |
-
-
- TGE |
- C-063 |
- 2638 |
- Actif |
-
-
- ASI |
- N/A |
- N/A |
- Inactif |
-
-
- ATEE |
- F-027d |
- N/A |
- Actif |
-
-
-
-
Comités
-
-
- Nom |
- Local |
- Poste |
- Statut |
-
-
- ASEG |
- B-06 |
- N/A |
- Actif |
-
-
- CIC |
- F-027c |
- N/A |
- Actif |
-
-
- Comité Mob |
- N/A |
- N/A |
- Actif |
-
-
- ESPACE |
- F-011d |
- 2418 |
- Actif |
-
-
- Friperie |
- F-027a |
- 2248 |
- Actif |
-
-
- CAP |
- N/A |
- N/A |
- Inactif |
-
-
- CÉSI |
- N/A |
- N/A |
- Inactif |
-
-
- CFEM |
- N/A |
- N/A |
- Inactif |
-
-
- EUMC-CEM |
- N/A |
- N/A |
- Inactif |
-
-
+ {{end}}
+ {{end}}
+
{{ template "footer-html" }}