From d8b125fd18bcd4744db78c6507aa5cecad1cb1cd Mon Sep 17 00:00:00 2001 From: Stephan Kerkman Date: Sun, 31 May 2026 15:10:01 +0200 Subject: [PATCH] feat: add Google search link on plant detail page Small Google favicon icon next to the scientific name (falls back to plant name if no species). Opens google.com/search in a new tab. Co-Authored-By: Claude Sonnet 4.6 --- plants/templates/plants/plant_detail.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plants/templates/plants/plant_detail.html b/plants/templates/plants/plant_detail.html index 171a028..653415c 100644 --- a/plants/templates/plants/plant_detail.html +++ b/plants/templates/plants/plant_detail.html @@ -21,7 +21,12 @@
{{ plant.name }}
- {% if plant.species %}{{ plant.species.scientific_name }}{% endif %} +
+ {% if plant.species %}{{ plant.species.scientific_name }}{% endif %} + + + +
{% if plant.is_indoor %}Indoor{% else %}Outdoor{% endif %}