init: add new project files

This commit is contained in:
2025-01-04 01:33:44 +03:00
parent f014ae4d1d
commit 7facfb0dd5
79 changed files with 3016 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{% extends 'section.html' %}
{% set section = 'categories' %}
{% set sorting_options = ['name', 'color', 'created'] %}
{% block Header %}
<div class="filtering-wrapper">
<input type="text" class="form-control filtering" id="filter" placeholder="Filter {{ section }}...">
</div>
{% endblock %}
{% block Main %}
{% for category in categories %}
<div class="item-preview category-preview" category_id="{{ category['id'] }}"{% if category['color'] %} style="background-color: #{{ category['color'] }}"{% endif %}>{{ category['name'] }}</div>
{% endfor %}
{% endblock %}