33 lines
1.3 KiB
Twig
33 lines
1.3 KiB
Twig
{% extends 'manage/news/master.twig' %}
|
|
{% from 'macros.twig' import container_title %}
|
|
{% from '_layout/input.twig' import input_hidden, input_csrf, input_text, input_checkbox %}
|
|
|
|
{% set is_new = category is not defined %}
|
|
|
|
{% block manage_content %}
|
|
<form method="post" action="{{ url('manage-news-category', {'category': category_info.id|default(0)}) }}" class="container">
|
|
{{ container_title(is_new ? 'New Category' : 'Editing ' ~ category_info.name) }}
|
|
|
|
{{ input_csrf() }}
|
|
{{ input_hidden('category[id]', category_info.id|default(0)) }}
|
|
|
|
<table style="color:inherit">
|
|
<tr>
|
|
<td>Name</td>
|
|
<td>{{ input_text('category[name]', '', category_info.name|default(), 'text', '', true) }}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Description</td>
|
|
<td><textarea name="category[description]" required class="input__textarea">{{ category_info.description|default() }}</textarea></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Is Hidden</td>
|
|
<td>{{ input_checkbox('category[hidden]', '', category_info.isHidden|default(false)) }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<button class="input__button">Save</button>
|
|
</form>
|
|
{% endblock %}
|