Limits number of characters on quickselect to 10.
This commit is contained in:
parent
40f5f283ad
commit
c57877b827
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ folder and edit it to add/remove links to the menu.
|
|||
<a class="dropdown-item" href="{% url 'chargen' %}">Create</a>
|
||||
<a class="dropdown-item" href="#">Manage</a>
|
||||
<div class="dropdown-divider"></div>
|
||||
{% for character in user.characters %}
|
||||
{% for character in user.characters|slice:"10" %}
|
||||
<a class="dropdown-item" href="#">{{ character }}</a>
|
||||
{% empty %}
|
||||
<a class="dropdown-item" href="#">No characters found!</a>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue