moved a bunch of churned customers templates to a hidden folder. Added to Sandata's script and the new groups. Notes.
This commit is contained in:
@ -0,0 +1,38 @@
|
||||
{% include "header" %}
|
||||
|
||||
<div style="margin:auto;" class="col-xs-12 col-sm-6">
|
||||
{% if learning_paths.available.any? %}
|
||||
{% for learning_path in learning_paths.available %}
|
||||
{% if learning_path.name == "Gusto Payroll Certification" %}
|
||||
{% include "cards_learning_path" with learning_path %}
|
||||
{% elsif learning_path.name == "Elective: Benefits 101" or learning_path.name == "Elective: HR 101"%}
|
||||
{% include "cards_learning_path" with learning_path %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{% if courses.enrolled.any? %}
|
||||
<div class="row row-with-thumbnails">
|
||||
{% for course in courses.enrolled %}
|
||||
{% if course.properties.content == "Bookkeeping_Accounting" %}
|
||||
<div class="col-xs-12 col-sm-6 col-lg-4">
|
||||
{% include "cards_course" with course %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% include "footer" %}
|
||||
|
||||
<style>
|
||||
|
||||
.col-xs-12.col-sm6.col-lg-4 {
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user