Feat: Multiplayer sessions added using CRUD database.

This commit is contained in:
2026-02-10 11:49:38 +00:00
parent bbbd21d4ad
commit fa81fddbd4
6850 changed files with 808827 additions and 8 deletions

View File

@@ -0,0 +1,39 @@
{% if is_blank_row %}
<tr class="{{ model.FLAG_ROW_NEW }} {{ model.FLAG_USER }}" {{ model.ATTR_USER_ID }}>
<td class="{{ model.FLAG_FIRSTNAME }}">
<input type="text"
class="{{ model.FLAG_FIRSTNAME }}"
{{ model.ATTR_VALUE_CURRENT }} {{ model.ATTR_VALUE_PREVIOUS }} />
</td>
<td class="{{ model.FLAG_SURNAME }}">
<input type="text"
class="{{ model.FLAG_SURNAME }}"
{{ model.ATTR_VALUE_CURRENT }} {{ model.ATTR_VALUE_PREVIOUS }} />
</td>
{% include 'components/input/_td_notes.html' %}
{% set active = True %}
{% include 'components/input/_td_active.html' %}
</tr>
{% else %}
<tr class="{{ model.FLAG_USER }}" {{ model.ATTR_USER_ID }}="{{ user.user_id }}">
<td class="{{ model.FLAG_FIRSTNAME }}">
<input type="text"
class="{{ model.FLAG_FIRSTNAME }}"
{{ model.ATTR_VALUE_CURRENT }}="{{ model.format_null_string_as_blank(user.firstname)|escape }}"
{{ model.ATTR_VALUE_PREVIOUS }}="{{ model.format_null_string_as_blank(user.firstname)|escape }}"
value="{{ model.format_null_string_as_blank(user.firstname) }}" />
</td>
<td class="{{ model.FLAG_SURNAME }}">
<input type="text"
class="{{ model.FLAG_SURNAME }}"
{{ model.ATTR_VALUE_CURRENT }}="{{ model.format_null_string_as_blank(user.surname)|escape }}"
{{ model.ATTR_VALUE_PREVIOUS }}="{{ model.format_null_string_as_blank(user.surname)|escape }}"
value="{{ model.format_null_string_as_blank(user.surname) }}" />
</td>
{% set notes = user.notes %}
{% include 'components/input/_td_notes.html' %}
{% set active = user.active %}
{% include 'components/input/_td_active.html' %}
</tr>
{% endif %}