{% extends "base.html" %} {% block title %} FeedMe {% endblock title %} {% block styles %} {{ block.super }} {% endblock styles %} {% load admin_tags %} {% load css_stuff %} {% block submenu %} {% include "nav.html" %} {% endblock submenu %} {% block content %}
{% csrf_token %}
{% for field in form %}
{{ field.label_tag }}
{{ field|addcss:"form-control" }}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}

Remember to add price of soda/extras to the total price

{% endblock content %}