File diff c13a986f2dd8 → 2f4ebc22afea
registrasion/templates/product_category.html
Show inline comments
 
new file 100644
 
<!--- Sample template. Move elsewhere once it's ready to go. -->
 

	
 
{% extends "site_base.html" %}
 
{% block body %}
 

	
 
  <h1>Product Category: {{ category.name }}</h1>
 

	
 
  <p>{{ category.description }}</p>
 

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

	
 
    <table>
 
        {{ voucher_form }}
 
    </table>
 

	
 
    <input type="submit">
 

	
 
    <table>
 
        {{ form }}
 
    </table>
 

	
 
    <input type="submit">
 

	
 
  </form>
 

	
 

	
 
{% endblock %}