SkyLearn-Test/templates/accounts/parent_form.html

15 lines
340 B
HTML

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