SkyLearn-Test/templates/accounts/parent_form.html
2023-01-12 23:17:10 +03:00

14 lines
266 B
HTML

{% extends 'base.html' %}
{% block title %}{{ title }}{% endblock title %}
{% load crispy_forms_tags %}
{% load static %}
{% block content %}
<form method="POST">{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="" value="Save">
</form>
{% endblock %}