44 lines
657 B
HTML
44 lines
657 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block head_title %}Verdure: Plant Reference{% endblock head_title %}
|
|
{% block head_content %}<h1>{{ plant.name }}</h1>{% endblock head_content %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if plant.description_short %}
|
|
<div>
|
|
{{ plant.description_short }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<dl>
|
|
|
|
{% if plant.height %}
|
|
<dt>Height</dt><dd>
|
|
{{ plant.height }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
{% if plant.spread %}
|
|
<dt>Spread</dt><dd>
|
|
{{ plant.spread }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
{% if plant.spacing %}
|
|
<dt>Spacing</dt><dd>
|
|
{{ plant.spacing }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
{% if plant.description_long %}
|
|
<div>
|
|
{{ plant.description_long }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</dl>
|
|
|
|
{% endblock content %}
|