14 lines
383 B
HTML
14 lines
383 B
HTML
{% import "components/event.html" as comp_event %}
|
|
{% import "components/plant.html" as comp_plant %}
|
|
{% import "components/image.html" as comp_image %}
|
|
|
|
{{ comp_plant::info(plant=plant) }}
|
|
<h3>Events</h3>
|
|
{{ comp_event::list(events=events) }}
|
|
{{ comp_event::form(plant_id=plant.id) }}
|
|
<h3>Images</h3>
|
|
<div id="images">
|
|
<ul></ul>
|
|
</div>
|
|
{{ comp_image::form(plant_id=plant.id) }}
|