Skip to content

Instantly share code, notes, and snippets.

@lb-
Created September 3, 2017 12:22
Show Gist options
  • Save lb-/36c0c0ae4df073a3bdc18444731d09ef to your computer and use it in GitHub Desktop.
Save lb-/36c0c0ae4df073a3bdc18444731d09ef to your computer and use it in GitHub Desktop.
Wagtail Forms - Upload Image Field - Add enctype to Form Page View
{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block content %}
{{ self.intro }}
<form action="{% pageurl self %}" method="POST" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<input type="submit">
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment