blob: 0e52cb1f8cc07e57b9b521cbe4d1ec9153efd2c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "index_page.html" %}
{% block title %}{{ tool }}{% endblock %}
{% block content %}
<!-- Start of body -->
{{ header("Error") }}
<div class="container">
<input type="hidden" name="uc_id" id="uc_id" value="{{ uc_id }}">
<p>You must select at least two traits to use the {{ tool }}.</p>
</div>
<!-- End of body -->
{% endblock %}
|