layout | title |
---|---|
main |
Skills - Dmitriy Logunov |
Skill
Rating
Years
{% for company in skills_matrix[0] %}
{% if company != '' %}
{{ company }}
{% endif %}
{% endfor %}
{% for row in skills_matrix %}
{% if forloop.first %}
{% continue %}
{% endif %}
{% for cell in row %}
{% if forloop.index <= 3 %}
<div class="grid-item">{{ cell }}</div>
{% else %}
{% if cell == '1' %}
<div class="grid-item with-checkbox">
<i class="fa fa-check-square" aria-hidden="true"></i>
<noscript>#</noscript>
</div>
{% else %}
<div class="grid-item"> </div>
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}