2024-03-18 23:04:48 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block title %}Create category{% endblock title %}
|
|
|
|
|
{% block body %}
|
2024-04-24 23:20:37 +02:00
|
|
|
<form action="/classifiers/new_category" method="post">
|
|
|
|
|
<div class="mb-2">
|
|
|
|
|
<label class="ars-input">
|
|
|
|
|
Name
|
|
|
|
|
<input type="text" name="name" />
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-2">
|
|
|
|
|
<label class="ars-input">
|
|
|
|
|
Description
|
|
|
|
|
<input type="text" name="description" />
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-2" style="text-align: right;">
|
|
|
|
|
<button class="ars-button" type="submit">Submit</button>
|
|
|
|
|
</div>
|
2024-03-18 23:04:48 +01:00
|
|
|
</form>
|
|
|
|
|
{% endblock body %}
|