Files
oh-my-nemesis/templates/partials/self-analysis-obj.html
Yannik Schmidt 90ccfcdf51 Initial (reset)
2021-07-30 00:42:41 +02:00

17 lines
626 B
HTML

<div class="row border-secondary">
{% set types = [ "Pre Game", "Early Game", "Ganks", "Counterjungling", "Mid Game", "Late Game", "All Game" ] %}
{% set ratings = [ "Good", "Decent", "Practiced", "Normal", "Bad", "Worse" ] %}
{% for t in types %}
<div id="{{ t }}" class="col">
<h3>{{ t }}</h3>
<textarea style="width: 100%;"></textarea>
<select class="browser-default custom-select">
<option selected>...</option>
{% for r in ratings %}
<option value="{{ r }}">{{ r }}</option>
{% endfor %}
</select>
</div>
{% endfor %}
</div>