projects
/
django-girls.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Post adding and editing forms
[django-girls.git]
/
blog
/
templates
/
blog
/
post_edit.html
1
{% extends 'blog/base.html' %}
2
3
{% block content %}
4
<h1>
New post
</h1>
5
<form
method
=
"POST"
class
=
"post-form"
>
{% csrf_token %}
6
{{ form.as_p }}
7
<button
type
=
"submit"
class
=
"save btn btn-default"
>
Save
</button>
8
</form>
9
{% endblock %}