Downloaded WoodMac Learn templates for the first time. Added some tasks for WML. Re-downloaded SPS to reference some code. SPS's app says all templates were last uploaded in April 18 2025. Last local changes (my hunch is downloaded) on my machine is May 13, 2025.
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
<div class="section-text-container">
|
||||
<div class="dashboard-resources-title">
|
||||
My Paths
|
||||
</div>
|
||||
<div class="dashboard-resources-subtitle">
|
||||
Learning Paths in which you're currently enrolled
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-container">
|
||||
<div class="filter-container">
|
||||
<div class='filter-section lp-filter'>
|
||||
<div class='filter-title'>Filter by:</div>
|
||||
{% assign lp_categories = '' | split: '' %}
|
||||
{% for lp in learning_paths.enrolled %}
|
||||
{% for cat in lp.categories %}
|
||||
{% assign cat_name = cat.name | split: '!@#$%^&*()' %}
|
||||
{% assign lp_categories = lp_categories | concat: cat_name %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% assign lp_categories = lp_categories | uniq %}
|
||||
<div class="filter-options-wrapper">
|
||||
<div class="filter-option-container">
|
||||
<input type="checkbox" class="input-checkbox" name="all" />
|
||||
<label class="input-label" >All</label>
|
||||
</div>
|
||||
{% for cat in lp_categories %}
|
||||
<div class="filter-option-container">
|
||||
<input type="checkbox" class="input-checkbox" name="{{cat}}" />
|
||||
<label class="input-label" >{{cat}}</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="cards-wrapper">
|
||||
{% if features.learning_paths? %}
|
||||
{% include "learning_paths_index", items: learning_paths.enrolled %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user