blob: d1b779efbcf9e6035f3f261899b962f83a8bb05e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.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 %}
|