Changeset - 2c087ace04c4
[Not reviewed]
0 0 1
Christopher Neugebauer - 7 years ago 2017-05-26 17:44:19
chrisjrn@gmail.com
Adds voucher_code html form
1 file changed with 26 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/voucher_code.html
Show inline comments
 
new file 100644
 
{% extends "registrasion/base.html" %}
 
{% load bootstrap %}
 

	
 
{% block body %}
 

	
 
  <h1>Enter voucher code</h1>
 

	
 
  <p>If you have a voucher code, you can enter it here to get
 
    discounts on products, or unlock products that aren't otherwise
 
    available.</p>
 

	
 
  <form method="post" action="">
 
    {% csrf_token %}
 

	
 
    <table>
 
        {{ voucher_form|bootstrap }}
 
    </table>
 

	
 
    <div class="form-actions">
 
        <input class="btn btn-primary" type="submit" value="Apply voucher code" />
 
        <a href="{% url "dashboard" %}" class="btn btn-default">Back to dashboard</a>
 
    </div>
 
  </form>
 

	
 

	
 
{% endblock %}
0 comments (0 inline, 0 general)