Files
enlight-lms/lms/lms/widgets/NoPreviewModal.html
2024-02-19 17:07:22 +05:30

39 lines
1.5 KiB
HTML

<div class="modal fade no-preview-modal" id="no-preview-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title">{{ _("Not Available for Preview") }}</div>
</div>
<div class="modal-body">
{% if is_user_interested %}
<div class="">
{{ _("You have opted to be notified for this course. You will receive an email when the course becomes available.") }}
</div>
{% else %}
<div class="">
{{ _("This lesson is not available for preview. Please join the course to access it.") }}
</div>
{% endif %}
</div>
{% if not is_user_interested %}
<div class="modal-footer">
<button class="btn btn-secondary btn-sm pull-right mr-2" data-dismiss="modal" aria-label="Close">
{{ _("Discard") }}
</button>
{% if course.upcoming %}
<button class="btn btn-primary btn-sm notify-me pull-right" data-course="{{course.name | urlencode}}">
{{ _("Notify me when available") }}
</button>
{% endif %}
</div>
{% endif %}
</div>
</div>
</div>