13 lines
358 B
HTML
13 lines
358 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}categories/create{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>Create category</h3>
|
|
<form method="post">
|
|
<label for="name">~/name</label>
|
|
<input type="text" class="u-full-width" name="name" id="name">
|
|
<input type="submit" class="button-primary" value="create">
|
|
</form>
|
|
{% endblock %}
|