| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Treatment Planner - Aquaculture Biosecurity Ops</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| </head> |
| <body class="bg-gray-50 min-h-screen font-sans"> |
| |
| <header class="bg-white shadow-sm p-4 sticky top-0 z-10"> |
| <div class="flex items-center"> |
| <a href="index.html" class="mr-3"> |
| <i data-feather="arrow-left"></i> |
| </a> |
| <h1 class="text-xl font-bold text-gray-800">Treatment Planner</h1> |
| </div> |
| </header> |
|
|
| |
| <main class="p-4 pb-20"> |
| |
| <section class="bg-white rounded-xl shadow-md p-4 mb-6"> |
| <h2 class="text-lg font-bold text-gray-800 mb-4">This Week's Schedule</h2> |
| |
| <div class="space-y-3"> |
| <div class="flex items-center justify-between p-3 bg-blue-50 border border-blue-200 rounded-lg"> |
| <div> |
| <div class="font-medium">North Fjord - Pen #4</div> |
| <div class="text-sm text-blue-600">Hydrogen Peroxide Treatment</div> |
| </div> |
| <div class="text-right"> |
| <div class="font-medium">Tomorrow</div> |
| <div class="text-sm text-gray-600">08:00 - 12:00</div> |
| </div> |
| </div> |
| |
| <div class="flex items-center justify-between p-3 bg-green-50 border border-green-200 rounded-lg"> |
| <div> |
| <div class="font-medium">South Bay - Pen #2</div> |
| <div class="text-sm text-green-600">Freshwater Bath</div> |
| </div> |
| <div class="text-right"> |
| <div class="font-medium">Friday</div> |
| <div class="text-sm text-gray-600">10:00 - 14:00</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-white rounded-xl shadow-md p-4 mb-6"> |
| <h2 class="text-lg font-bold text-gray-800 mb-4">Plan New Treatment</h2> |
| |
| <div class="space-y-4"> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Select Site/Pen</label> |
| <select class="w-full p-3 border border-gray-300 rounded-lg"> |
| <option>North Fjord - Pen #4</option> |
| <option>North Fjord - Pen #3</option> |
| <option>South Bay - Pen #1</option> |
| <option>South Bay - Pen #2</option> |
| </select> |
| </div> |
| |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Treatment Product</label> |
| <select class="w-full p-3 border border-gray-300 rounded-lg"> |
| <option>Hydrogen Peroxide</option> |
| <option>Freshwater Bath</option> |
| <option>Azamethiphos</option> |
| <option>Deltamethrin</option> |
| </select> |
| </div> |
| |
| <div class="grid grid-cols-2 gap-4"> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Start Date</label> |
| <input type="date" class="w-full p-3 border border-gray-300 rounded-lg"> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Duration (hours)</label> |
| <input type="number" class="w-full p-3 border border-gray-300 rounded-lg" value="4"> |
| </div> |
| </div> |
| |
| <div class="bg-yellow-50 border border-yellow-200 rounded-lg p-3"> |
| <div class="flex items-center mb-2"> |
| <i data-feather="info" class="text-yellow-600 mr-2"></i> |
| <span class="font-medium">Auto-calculated Dosage</span> |
| </div> |
| <p class="text-sm text-yellow-700">Based on 410 tons biomass: 1.8 mg/L Hydrogen Peroxide</p> |
| </div> |
| |
| <button class="w-full bg-blue-600 text-white py-3 rounded-lg font-medium"> |
| Schedule Treatment |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-white rounded-xl shadow-md p-4 mb-6"> |
| <h2 class="text-lg font-bold text-gray-800 mb-4">Treatment Products</h2> |
| |
| <div class="space-y-3"> |
| <div class="p-3 border border-gray-200 rounded-lg"> |
| <div class="flex justify-between items-start"> |
| <h3 class="font-medium">Hydrogen Peroxide</h3> |
| <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Available</span> |
| </div> |
| <p class="text-sm text-gray-600 mt-1">Dosage: 1.5-2.0 mg/L • Withdrawal: 72 hours</p> |
| </div> |
| |
| <div class="p-3 border border-gray-200 rounded-lg"> |
| <div class="flex justify-between items-start"> |
| <h3 class="font-medium">Freshwater Bath</h3> |
| <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Available</span> |
| </div> |
| <p class="text-sm text-gray-600 mt-1">Duration: 2-4 hours • Withdrawal: None</p> |
| </div> |
| |
| <div class="p-3 border border-gray-200 rounded-lg"> |
| <div class="flex justify-between items-start"> |
| <h3 class="font-medium">Azamethiphos</h3> |
| <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded-full">Low Stock</span> |
| </div> |
| <p class="text-sm text-gray-600 mt-1">Dosage: 0.05 mg/L • Withdrawal: 15 days</p> |
| </div> |
| </div> |
| |
| <button class="w-full bg-gray-100 text-gray-800 py-3 rounded-lg font-medium mt-4"> |
| View All Products |
| </button> |
| </section> |
|
|
| |
| <section class="bg-white rounded-xl shadow-md p-4"> |
| <h2 class="text-lg font-bold text-gray-800 mb-4">Withdrawal Period Guide</h2> |
| |
| <div class="space-y-2"> |
| <div class="flex justify-between items-center p-2"> |
| <span class="text-sm">Hydrogen Peroxide</span> |
| <span class="text-sm font-medium">72 hours</span> |
| </div> |
| <div class="flex justify-between items-center p-2 bg-gray-50"> |
| <span class="text-sm">Freshwater Bath</span> |
| <span class="text-sm font-medium">None</span> |
| </div> |
| <div class="flex justify-between items-center p-2"> |
| <span class="text-sm">Azamethiphos</span> |
| <span class="text-sm font-medium">15 days</span> |
| </div> |
| <div class="flex justify-between items-center p-2 bg-gray-50"> |
| <span class="text-sm">Deltamethrin</span> |
| <span class="text-sm font-medium">30 days</span> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |
|
|