20 lines
863 B
HTML
20 lines
863 B
HTML
{% set show_search = frappe.db.get_single_value("LMS Settings", "show_search") %}
|
|
{% set search_placeholder = frappe.db.get_single_value("LMS Settings", "search_placeholder") %}
|
|
|
|
{% if show_search %}
|
|
<input class="search" id="search-course" placeholder="{{ _(search_placeholder) }}">
|
|
|
|
<div class="empty-state alert alert-dismissible search-empty-state hide">
|
|
<a href="#" class="close-search-empty-state" aria-label="close">×</a>
|
|
<div>
|
|
<img class="icon icon-xl" src="/assets/frappe/images/ui-states/search-empty-state.svg">
|
|
</div>
|
|
<div class="empty-state-text">
|
|
<div class="empty-state-heading">{{ _("No results found") }}</div>
|
|
<div class="course-meta">{{ _("Try some other keyword or explore our list of courses.") }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script> {% include "school/templates/search_course/search_course.js" %} </script>
|
|
{% endif %}
|