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:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user