I am new to Django but I am rendering a Modelform and failed to make it, only the submit buttons comes but the textfields remain hidden. Any guidance here?
Here is my orderform.html file:
{% extends 'appa/main.html' %}
{% load static %}
{% block content %}
<form action ="" method ='post'>
{% csrf_token %}
{{ form }}
<input type = "submit" name = "Submit">
</form>
{% endblock %}