10 lines
347 B
HTML
10 lines
347 B
HTML
{% extends 'core_ui/base.html' %}
|
|
{% block content %}
|
|
<h1>{{ plant.name }}</h1>
|
|
<p>Type: {{ plant.type }}</p>
|
|
<p>{{ plant.notes }}</p>
|
|
<p>Status: {% if plant.is_active %}Active{% else %}Inactive{% endif %}</p>
|
|
<a href="{{ url_for('plant.edit', plant_id=plant.id) }}">Edit</a>
|
|
<a href="{{ url_for('plant.index') }}">Back to list</a>
|
|
{% endblock %}
|