12 lines
171 B
HTML
12 lines
171 B
HTML
|
{% include 'header.html' %}
|
||
|
|
||
|
<h3>New Automation Strategy</h3>
|
||
|
{% for m in messages %}
|
||
|
<p>{{ m }}</p>
|
||
|
{% endfor %}
|
||
|
|
||
|
<p>TODO</p>
|
||
|
|
||
|
<p><a href="/">home</a></p>
|
||
|
</body></html>
|