{% extends "base.html" %} {% block title %} FeedMe {% endblock title %} {% block styles %} {{ block.super }} {% endblock styles %} {% load admin_tags %} {% block submenu %} {% include "nav.html" %} {% endblock submenu %} {% block content %} {{ form.name|title }} {% csrf_token %} {% for field in form %} {{ field.label_tag }} {{ field }} {{ field.errors }} {% endfor %} Remember to add price of soda/extras to the total price {% endblock content %}
Remember to add price of soda/extras to the total price