File diff a2bdcb48b2af → 796c8cca18d9
pinaxcon/templates/registrasion/product_category.html
Show inline comments
...
 
@@ -17,13 +17,13 @@
 
    </div>
 

	
 
    {% items_purchased category as items %}
 
    {% if items %}
 
      <h3>Paid items</h3>
 
      <p>You have already paid for the following items:</p>
 
      {% include "registrasion/items_list.html" with items=items %}
 
      {% include "registrasion/_items_list.html" with items=items %}
 
    {% endif %}
 

	
 

	
 
    {% if discounts %}
 
      <h3>Available Discounts</h3>
 
      {% include "registrasion/discount_list.html" with discounts=discounts %}
...
 
@@ -34,12 +34,14 @@
 
    <table>
 
        {{ form | bootstrap }}
 
    </table>
 

	
 
    <div class="form-actions">
 
        <input class="btn btn-primary" type="submit" value="Add to cart" />
 
        <a href="{% url "dashboard" %}" class="btn btn-default">Return to dashboard</a>
 
    </div>
 

	
 

	
 
  </form>
 

	
 

	
 
{% endblock %}