mirror of
https://github.com/FAUSheppy/oh-my-nemesis
synced 2025-12-10 00:28:32 +01:00
Initial (reset)
This commit is contained in:
16
templates/partials/self-analysis-obj.html
Normal file
16
templates/partials/self-analysis-obj.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user