2018-05-09 17:53:12 +00:00
|
|
|
{% extends "base" %}
|
2018-04-23 14:25:39 +00:00
|
|
|
|
2018-05-09 17:53:12 +00:00
|
|
|
{% block title %}
|
|
|
|
New post
|
|
|
|
{% endblock title %}
|
2018-04-23 14:25:39 +00:00
|
|
|
|
2018-05-09 17:53:12 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>Create a post</h1>
|
|
|
|
<form method="post">
|
|
|
|
<label for="title">Title</label>
|
|
|
|
<input name="title">
|
2018-04-23 14:25:39 +00:00
|
|
|
|
2018-05-09 17:53:12 +00:00
|
|
|
<label for="content">Content</label>
|
|
|
|
<textarea name="content"></textarea>
|
|
|
|
|
|
|
|
<label for="license">License</label>
|
|
|
|
<input name="license">
|
|
|
|
|
|
|
|
<input type="submit" value="Publish"/>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|