1234567891011121314151617 |
- <div class="mdui-chip">
- {% if level == 0 %}
- <span class="mdui-chip-title mdui-color-grey">LV0</span>
- {% elif level == 1 %}
- <span class="mdui-chip-title mdui-color-cyan">LV1</span>
- {% elif level == 2 %}
- <span class="mdui-chip-title mdui-color-teal">LV2</span>
- {% elif level == 3 %}
- <span class="mdui-chip-title mdui-color-light-green">LV3</span>
- {% elif level == 4 %}
- <span class="mdui-chip-title mdui-color-green">LV4</span>
- {% elif level == 5 %}
- <span class="mdui-chip-title mdui-color-yellow">LV5</span>
- {% elif level == 6 %}
- <span class="mdui-chip-title mdui-color-deep-orange">LV6</span>
- {% endif %}
- </div>
|