File diff c6314ae230da → 1886323d7431
pinaxcon/templates/registrasion/amend_registration.html
Show inline comments
...
 
@@ -16,39 +16,39 @@
 
{% include "registrasion/_items_list.html" with items=paid %}
 

	
 
<br />
 

	
 
<h3>Cancelled Items</h3>
 

	
 
{% include "registrasion/_items_list.html" with items=cancelled %}
 

	
 
<br />
 

	
 
<h3>Amend pending items</h3>
 

	
 
<form method="POST">
 
<form class="form-horizontal" method="POST">
 
  {% csrf_token %}
 
  {% include "_form_snippet.html" with form=form %}
 
  <br/>
 
  <input class="btn" type="submit">
 
</form>
 

	
 
<br />
 

	
 
<h3>Generate invoice</h3>
 

	
 
<div class="btn-group">
 
  <a class="btn" href="{% url "checkout" user.id %}">Check out cart and view invoice</a>
 
</div>
 

	
 
<br />
 

	
 
<h3>Apply voucher</h3>
 

	
 
<form method="POST">
 
<form class="form-horizontal" method="POST">
 
  {% csrf_token %}
 
  {% include "_form_snippet.html" with form=voucher_form %}
 
  <br/>
 
  <input class="btn" type="submit">
 
</form>
 

	
 
{% endblock %}