Add mastery checkboxes
This commit is contained in:
parent
984e59234a
commit
44ac35e21b
|
@ -180,6 +180,15 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="bottom" style="text-align: center; font-size:1.6em;">
|
||||||
|
{% for component in xml.components %}
|
||||||
|
{% if component["@db_entry"] | endswith("Mastery") %}
|
||||||
|
❏ ❏ ❏ ❏ ❏
|
||||||
|
❏ ❏ ❏ ❏ ❏ <br>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
3
style.js
3
style.js
|
@ -49,6 +49,9 @@ env.addFilter('all', function(iterable) {
|
||||||
env.addFilter('startswith', function(string, match) {
|
env.addFilter('startswith', function(string, match) {
|
||||||
return string.slice(0, match.length) === match;
|
return string.slice(0, match.length) === match;
|
||||||
});
|
});
|
||||||
|
env.addFilter('endswith', function(string, match) {
|
||||||
|
return string.endsWith(match);
|
||||||
|
});
|
||||||
env.addFilter('tail', function(sequence) {
|
env.addFilter('tail', function(sequence) {
|
||||||
return sequence.slice(1);
|
return sequence.slice(1);
|
||||||
});
|
});
|
||||||
|
|
|
@ -137,6 +137,12 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.bottom {
|
||||||
|
position: absolute;
|
||||||
|
bottom:0;
|
||||||
|
left:0;
|
||||||
|
right:0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue