Removed a bunch of old/churned client files and updated some older clients that I haven't touched in a while. Lots of summer cleaning!

This commit is contained in:
Norm Rasmussen
2025-07-29 14:20:27 -04:00
parent 83267e5f86
commit a0b767b798
834 changed files with 1737 additions and 38944 deletions

View File

@ -17,7 +17,11 @@
{% endfor %}
</div>
<div class="card-detail course-time">
{{course.properties.course_time}} minutes
<div class="text lang-en">{{course.properties.course_time}} minutes</div>
<div class="text lang-de">{{course.properties.course_time}} Minuten</div>
<div class="text lang-fr">{{course.properties.course_time}} minutes</div>
<div class="text lang-jp">{{course.properties.course_time}} 分</div>
</div>
</div>
<div class="card-content-title">
@ -54,6 +58,34 @@
{% endif %}
{% endfor %}
</a>
<a class="card-btn dark-btn lang-fr"
{% if course.enrolled? %}
href="{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}"
{% else %}
href="{{ course_path }}"
{% endif %}>
{% for category in course.categories %}
{% if category.name == 'PDF' %}
Lire
{% elsif category.name == 'Video' %}
Visionner
{% endif %}
{% endfor %}
</a>
<a class="card-btn dark-btn lang-jp"
{% if course.enrolled? %}
href="{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}"
{% else %}
href="{{ course_path }}"
{% endif %}>
{% for category in course.categories %}
{% if category.name == 'PDF' %}
今すぐ読む
{% elsif category.name == 'Video' %}
今すぐ視聴
{% endif %}
{% endfor %}
</a>
</div>
</div>
</div>