From b703f5bf045b8aa48e035777725f6caf6737a735 Mon Sep 17 00:00:00 2001
From: Alexandre <44178713+alexbelgium@users.noreply.github.com>
Date: Tue, 26 Aug 2025 08:44:00 +0200
Subject: [PATCH] Add Species Management button and view handling
---
homepage/views.php | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/homepage/views.php b/homepage/views.php
index a137c78..501989e 100644
--- a/homepage/views.php
+++ b/homepage/views.php
@@ -173,6 +173,7 @@ if(isset($_GET['view'])){
+
";
}
@@ -203,6 +204,10 @@ if(isset($_GET['view'])){
$species_list="whitelist";
include('./scripts/species_list.php');
}
+ if($_GET['view'] == "Species Management"){
+ ensure_authenticated();
+ include('scripts/species_tools.php');
+ }
if($_GET['view'] == "File"){
echo "";
}