Skip to content

Instantly share code, notes, and snippets.

@renjithsraj
Created July 28, 2018 00:15
Show Gist options
  • Save renjithsraj/9fc5a25042b75785615fbbf996d5f6ed to your computer and use it in GitHub Desktop.
Save renjithsraj/9fc5a25042b75785615fbbf996d5f6ed to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
<title>Recipe Form</title>
{{ form.media }}
</head>
<body>
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
<div class="col-sm-6 offset-sm-3">
<form method="POST" action="" enctype="multipart/form-data">
{% csrf_token %}
{{form}}
{{ formset.management_form }}
{% for formse in formset %}
{{ formse }}
{% endfor %}
<input type="submit" value="create post"/>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment