Cin7 Templates, DVU templates, and G2 templates. Finished the mass delete script. Fun fact, dev docs are wrong... it's not a 15,000 limit, but 1500.

This commit is contained in:
Norm Rasmussen
2024-05-10 16:39:37 -04:00
parent fa3ab13579
commit 3820969cc2
11 changed files with 245 additions and 62 deletions

View File

@ -46,6 +46,16 @@
{% endfor %}
</div>
</div>
{% if course.id == "1d10edc4-6414-4707-891b-8daab9927070" %}
<div class='np-course-bottom-right'>
<div class='np-course-bottom-right-title'>
About this kit
</div>
<div class='np-course-bottom-right-description'>
{{ course.short_description }}
</div>
</div>
{% else %}
<div class='np-course-bottom-right'>
<div class='np-course-bottom-right-title'>
About this course
@ -54,6 +64,7 @@
{{ course.short_description }}
</div>
</div>
{% endif %}
</div>
</div>

View File

@ -17,7 +17,11 @@
{% if course.enrolled? == false %}
{% t shared.enroll %}
{% elsif course.started? == false %}
{% t shared.course.start, key: current_school.course_vocabulary %}
{% if course.id == "1d10edc4-6414-4707-891b-8daab9927070" %}
Explore this Kit
{% else %}
{% t shared.course.start, key: current_school.course_vocabulary %}
{% endif %}
{% elsif course.completed? %}
{% t shared.course.view, key: current_school.course_vocabulary %}
{% else %}
@ -35,4 +39,4 @@
font-weight: 700;
border-radius: 100px;
}
</style>
</style>

View File

@ -13,5 +13,10 @@
{% endfor %}
</div>
</nav>
{% if current_school.properties.show_office_hours_banner == true %}
<div class="np-alert" >
{{ current_school.properties.office_hours_banner }}
</div>
{% endif %}
{% include "badges" %}