mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 00:14:50 +00:00
Merge branch 'develop' into call-summary-dialog
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
|
|
||||||
{% macro title() %}
|
{% macro title() %}
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<a href="#" class="text-muted">
|
<a href="/lms/course?name={{ course }}&program={{ program }}" class="text-muted">
|
||||||
Back to Course
|
Back to Course
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<div onclick="show_singup()">
|
<div onclick="show_singup()">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if topic.hero_image %}
|
{% if topic.hero_image %}
|
||||||
<div class="card-hero-img" style="background-image: url('{{ topic.hero_image }})'"></div>
|
<div class="card-hero-img" style="background-image: url('{{ topic.hero_image }}')"></div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="card-image-wrapper text-center">
|
<div class="card-image-wrapper text-center">
|
||||||
<div class="image-body"><i class="fa fa-picture-o" aria-hidden="true"></i></div>
|
<div class="image-body"><i class="fa fa-picture-o" aria-hidden="true"></i></div>
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
{{ card(topic) }}
|
{{ card(topic) }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if topics %}
|
{% if topics %}
|
||||||
{% for n in range(((topics|length)%3)) %}
|
{% for n in range( (3 - (topics|length)) %3) %}
|
||||||
{{ null_card() }}
|
{{ null_card() }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
{{ program_card(program.program, program.has_access) }}
|
{{ program_card(program.program, program.has_access) }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if featured_programs %}
|
{% if featured_programs %}
|
||||||
{% for n in range((featured_programs|length)%3) %}
|
{% for n in range( (3 - (featured_programs|length)) %3) %}
|
||||||
{{ null_card() }}
|
{{ null_card() }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -77,7 +77,7 @@
|
|||||||
{{ card(course) }}
|
{{ card(course) }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if courses %}
|
{% if courses %}
|
||||||
{% for n in range((courses|length)%3) %}
|
{% for n in range( (3 - (courses|length)) %3) %}
|
||||||
{{ null_card() }}
|
{{ null_card() }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
{{ card(content, loop.index, topic.contents|length) }}
|
{{ card(content, loop.index, topic.contents|length) }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if contents %}
|
{% if contents %}
|
||||||
{% for n in range((contents|length)%3) %}
|
{% for n in range( (3 - (contents|length)) %3) %}
|
||||||
{{ null_card() }}
|
{{ null_card() }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user