- Translate all templates: login, dashboard, expense success, categories CRUD, subcategory CRUD, month start page, nav bar, partials - Translate seed categories: Survival, Leisure & vice, Culture, Extras with all subcategories in English - Translate form placeholders and view titles - Translate error messages (login, delete confirmations) - Change LANGUAGE_CODE from "es" to "en-us" - Change html lang from "es" to "en" - Format all Python files with Ruff (tabs)
11 lines
380 B
HTML
11 lines
380 B
HTML
<div class="form-control mb-5">
|
|
<label class="label" for="id_subcategory">
|
|
<span class="label-text">Subcategory</span>
|
|
</label>
|
|
<select name="subcategory" id="id_subcategory" class="select select-bordered w-full">
|
|
{% for sub in subcategories %}
|
|
<option value="{{ sub.id }}">{{ sub.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|