Add in_game_name field to FriendCode model

This commit is contained in:
badblocks 2025-03-14 09:50:49 -07:00
parent 4792906907
commit bc181b12d9
19 changed files with 113 additions and 56 deletions

View file

@ -4,7 +4,7 @@ Expected variables:
- friend_codes: A list or QuerySet of FriendCode objects.
- selected_friend_code (optional): The currently selected FriendCode. If not provided, the user's default friend code is used.
- field_name (optional): The name/id for the input element (default "friend_code").
- label (optional): The label text (default "Friend Code").
- label (optional): The label text (default None).
{% endcomment %}
{% with field_name=field_name|default:"friend_code" label=label|default:"" %}
@ -19,7 +19,7 @@ Expected variables:
<select id="{{ field_name }}" name="{{ field_name }}" class="select select-bordered w-full" @change="$el.form.submit()">
{% for code in friend_codes %}
<option value="{{ code.pk }}" {% if effective_friend_code and code.pk|stringformat:"s" == effective_friend_code.pk|stringformat:"s" %}selected{% endif %}>
{{ code.friend_code }}
{{ code.in_game_name }}
</option>
{% endfor %}
</select>