{% extends "base.html" %} {% block content %}
Gift Codes
{% if error %}

Error! Your reputation is not enough to participate. Minimum Reputation to participate: {{g.minimum_rep}}.

{%else %}

Success! You can use these gift codes in the root page.

{% for gift_code in gift_codes %} {% endfor %}
Gift code Created For Created At Used At
{{gift_code.code}} @{{gift_code.created_for}} {{gift_code.created_at}} {% if gift_code.used_at %}{{gift_code.used_at}}{%else %}-{% endif %}
{%endif%}
{% endblock %} {%block qa %}{% endblock %}