feat: editor js import

This commit is contained in:
Jannat Patel
2023-04-18 11:51:57 +05:30
parent 4c220a67f2
commit a0782c7bf7
11 changed files with 70 additions and 17 deletions

25
lms/www/batch/edit.html Normal file
View File

@@ -0,0 +1,25 @@
{% extends "lms/templates/lms_base.html" %}
{% block title %}
{% if lesson.title %}
{{ lesson.title }} - {{ course.title }}
{% else %}
{{ _("New Lesson") }}
{% endif %}
{% endblock %}
{% block content %}
<div class="container">
<div>
<div class="">
<div>
{{ _("Title") }}
</div>
<div>
{{ _("Something short and concise.") }}
</div>
<input class="form-control">
</div>
</div>
</div>
{% endblock %}