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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 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">
{{_('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' %}
<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()">{{_('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');
})
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');
let opts = {
method: 'erpnext.education.utils.enroll_in_program',
args: {
program_name: params.program
},
freeze: true,
freeze_message: __('Enrolling...')
2019-05-30 11:05:15 +00:00
}
frappe.call(opts).then(res => {
let success_dialog = new frappe.ui.Dialog({
title: __('Success'),
primary_action_label: __('OK'),
primary_action: function() {
window.location.reload();
2019-05-30 11:05:15 +00:00
}
})
success_dialog.show();
success_dialog.set_message(__('You have successfully enrolled for the program.'));
2019-05-30 11:05:15 +00:00
})
2019-05-29 13:08:09 +00:00
}
2019-05-21 06:35:19 +00:00
</script>
{% endblock %}
{% endmacro %}