Merge branch 'quiz-refactor' of https://github.com/pateljannat/lms into quiz-refactor
This commit is contained in:
@@ -127,7 +127,7 @@
|
||||
{%- block script %}
|
||||
{{ super() }}
|
||||
<script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@editorjs/paragraph@latest"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@editorjs/paragraph@2.10.0"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@editorjs/header@latest"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@editorjs/embed@latest"></script>
|
||||
{% endblock %}
|
||||
|
||||
@@ -785,6 +785,12 @@ const email_to_students = () => {
|
||||
label: __("Subject"),
|
||||
reqd: 1,
|
||||
},
|
||||
{
|
||||
fieldtype: "Data",
|
||||
fieldname: "reply_to",
|
||||
label: __("Reply To"),
|
||||
reqd: 0,
|
||||
},
|
||||
{
|
||||
fieldtype: "Text Editor",
|
||||
fieldname: "message",
|
||||
@@ -807,6 +813,7 @@ const send_email = (values) => {
|
||||
args: {
|
||||
batch: $(".class-details").data("batch"),
|
||||
subject: values.subject,
|
||||
reply_to: values.reply_to,
|
||||
message: values.message,
|
||||
},
|
||||
callback: (r) => {
|
||||
|
||||
Reference in New Issue
Block a user