You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
426 B

{% extends "base.html" %}
{% block content %}
<title>{{ plant.name }}</title>
<h4>{{ plant.name }}</h4>
<p>{{ plant.bought.date }}</p>
<br>
<h5>Temperature</h5>
{% for temp in temps %}
<li>
{{ temp.temp }}
</li>
{% endfor %}
<br>
<h5>Moisture</h5>
{% for moist in moists %}
<li>
{{ moist.moisture }}
</li>
{% endfor %}
{% endblock %}