brotherton-erpnext/erpnext/www/lms/macros/hero.html

55 lines
1.4 KiB
HTML
Raw Normal View History

2019-06-05 07:59:51 +00:00
{% macro hero(title, description, has_access, back) %}
2019-05-21 06:35:19 +00:00
<div class='container pb-5'>
2019-06-05 07:59:51 +00:00
<div class="mb-3">
<a href="{{ back.url }}" class="text-muted">
2019-06-06 08:33:01 +00:00
Back to {{ back.name }}
2019-06-05 07:59:51 +00:00
</a>
</div>
<h1>{{ title }}</h1>
2019-06-05 12:19:42 +00:00
<p class='lead' style="max-width: 100%;">{{ description or ''}}</p>
2019-05-21 06:35:19 +00:00
<p class="mt-4">
{% if frappe.session.user == 'Guest' %}
2019-05-29 13:08:09 +00:00
<a id="signup" class="btn btn-primary btn-lg" href="/login#signup">Sign Up</a>
2019-05-30 11:05:15 +00:00
{% elif not has_access %}
<button id="enroll" class="btn btn-primary btn-lg" onclick="enroll()" disabled>Enroll</button>
{% endif %}
2019-05-21 06:35:19 +00:00
</p>
</div>
{% block script %}
<script type="text/javascript">
2019-05-30 11:05:15 +00:00
frappe.ready(() => {
btn = document.getElementById('enroll');
if (btn) btn.disabled = false;
})
2019-05-29 13:08:09 +00:00
function enroll() {
2019-05-30 11:05:15 +00:00
let params = frappe.utils.get_query_params()
2019-05-30 12:34:36 +00:00
2019-05-30 11:05:15 +00:00
let btn = document.getElementById('enroll');
btn.disbaled = true;
btn.innerText = 'Enrolling...'
let opts = {
method: 'erpnext.education.utils.enroll_in_program',
args: {
program_name: params.program
}
}
frappe.call(opts).then(res => {
let success_dialog = new frappe.ui.Dialog({
title: __('Success'),
secondary_action: function() {
window.location.reload()
}
})
success_dialog.set_message('You have successfully enrolled for the program ');
success_dialog.$message.show()
success_dialog.show();
btn.disbaled = false;
})
2019-05-29 13:08:09 +00:00
}
2019-05-21 06:35:19 +00:00
</script>
{% endblock %}
{% endmacro %}