29 lines
452 B
HTML
29 lines
452 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}Recipe{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
{% block content %}
|
||
|
<h2>{{recipe.name}} Recipe</h2>
|
||
|
<h3>Description</h3>
|
||
|
<p>
|
||
|
{{recipe.description}}
|
||
|
</p>
|
||
|
<h3>Phases</h3>
|
||
|
{% for p in recipe.sm.phases %}
|
||
|
<h4>{{p.name}}</h4>
|
||
|
{{p.text}}
|
||
|
{% endfor %}
|
||
|
|
||
|
<h3>Required Sensors</h3>
|
||
|
Boh
|
||
|
|
||
|
</br>
|
||
|
</br>
|
||
|
Current load (kg)
|
||
|
<input value="Automatic"></input>
|
||
|
</br>
|
||
|
</br>
|
||
|
<button>Start!</button>
|
||
|
{% endblock %}
|