mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-30 22:22:11 +02:00
16 lines
448 B
HTML
16 lines
448 B
HTML
{% extends 'layouts/base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'New transaction' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container py-3 column-gap-5"
|
|
_="install init_tom_select
|
|
install init_datepicker">
|
|
<form hx-post="{% url 'transaction_simple_add' %}" hx-swap="outerHTML" hx-target="body" novalidate>
|
|
{% crispy form form.helper_simple %}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|