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

56 lines
1.4 KiB
HTML
Raw Normal View History

2019-06-05 13:29:51 +05:30
{% macro hero(title, description, has_access, back) %}
2019-05-21 12:05:19 +05:30
<div class='container pb-5'>
2019-06-05 13:29:51 +05:30
<div class="mb-3">
<a href="{{ back.url }}" class="text-muted">
{{_('Back to')}} {{ _(back.name) }}
2019-06-05 13:29:51 +05:30
</a>
</div>
<h1>{{ title }}</h1>
2019-06-05 17:49:42 +05:30
<p class='lead' style="max-width: 100%;">{{ description or ''}}</p>
2019-05-21 12:05:19 +05:30
<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 16:35:15 +05:30
{% elif not has_access %}
<button id="enroll" class="btn btn-primary btn-lg" onclick="enroll()" disabled>{{_('Enroll')}}</button>
{% endif %}
2019-05-21 12:05:19 +05:30
</p>
</div>
{% block script %}
<script type="text/javascript">
2019-05-30 16:35:15 +05:30
frappe.ready(() => {
btn = document.getElementById('enroll');
if (btn) btn.disabled = false;
})
2019-05-29 18:38:09 +05:30
function enroll() {
2019-05-30 16:35:15 +05:30
let params = frappe.utils.get_query_params()
2019-05-30 18:04:36 +05:30
2019-05-30 16:35:15 +05:30
let btn = document.getElementById('enroll');
btn.disbaled = true;
btn.innerText = __('Enrolling...')
2019-05-30 16:35:15 +05:30
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 '));
2019-05-30 16:35:15 +05:30
success_dialog.$message.show()
success_dialog.show();
btn.disbaled = false;
})
2019-05-29 18:38:09 +05:30
}
2019-05-21 12:05:19 +05:30
</script>
{% endblock %}
{% endmacro %}