chore: initial import for test contour with k3s CI

This commit is contained in:
sova-bootstrap
2026-05-28 12:09:28 +03:00
commit d77d0a872f
423 changed files with 35401 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{% extends 'admin_base.html.twig' %}
{% block title %}CategoryPage{% endblock %}
{% block body %}
<h1>CategoryPage</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ category_page.id }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ category_page.name }}</td>
</tr>
<tr>
<th>Active</th>
<td>{{ category_page.active ? 'Yes' : 'No' }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('category_page_index') }}">back to list</a>
<a href="{{ path('category_page_edit', {'id': category_page.id}) }}">edit</a>
{{ include('category_page/_delete_form.html.twig') }}
{% endblock %}