mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 13:07:16 +02:00
Limits number of characters on quickselect to 10.
This commit is contained in:
parent
3c0f02d66d
commit
ae84ba0ed2
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