2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block title %}
|
|
|
|
New post
|
|
|
|
{% endblock title %}
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block content %}
|
|
|
|
<h1>Create a post</h1>
|
|
|
|
<form method="post">
|
|
|
|
<label for="title">Title</label>
|
|
|
|
<input name="title">
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-05-09 19:53:12 +02: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 %}
|