at/templates/post_claim.html

12 lines
238 B
HTML
Raw Permalink Normal View History

2012-01-29 01:34:11 +00:00
{% extends "basic.html" %}
{% block content %}
{% if error %}
2012-01-27 17:46:30 +00:00
<h2>Error!</h2>
<p class="error">{{ error }}</p>
{% else %}
2012-01-27 17:46:30 +00:00
<h2>Success!</h2>
Congratulations, you just claimed this device!
<a href="/">go back</a>
{% endif %}
2012-01-29 01:34:11 +00:00
{% endblock %}