14 lines
295 B
HTML
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 %}
|