Django Form Submit Button

django, django-forms, python

Solution

<input type="submit" value="Gogogo!" />

Problem

I have a pretty simple file upload form class in django: ``` class UploadFileForm(forms.Form): category = forms.ChoiceField(get_category_list()) file = forms.FileField() ``` one problem is that when i do `{{ form.as_p }}`, It has no submit button. How do i add one?

Original source