This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/templates/account/register.html

10 lines
236 B
HTML
Raw Normal View History

2023-12-18 21:00:37 +01:00
{% extends "facturio/base.html" %}
2023-12-19 13:49:34 +01:00
{% load crispy_forms_tags %}
2023-12-18 21:00:37 +01:00
{% block title %}Register{% endblock %}
2023-12-19 13:49:34 +01:00
2023-12-18 21:00:37 +01:00
{% block content %}
2023-12-19 13:49:34 +01:00
{# TODO: neukazovat všechny pičoviny hned najedou#}
{% crispy form form.helper %}
2023-12-18 21:00:37 +01:00
{% endblock %}