SkyLearn-Test/templates/accounts/parent_form.html
2023-12-30 21:35:22 +03:00

14 lines
295 B
HTML

{% extends 'base.html' %}
{% block title %}{{ title }} | Learning management system{% 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 %}