тест 6

This commit is contained in:
2026-05-15 14:19:26 +03:00
parent 761f46a932
commit d8a31442c9
4 changed files with 80 additions and 4 deletions

View File

@@ -978,26 +978,34 @@ data-role="{{ p.position or '' }}"
</td>
<td class="tour-channel-cell">
<label>
{% set channel = m.channel or "" %}
<label class="channel-check">
<input
type="checkbox"
class="tour-channel-checkbox"
data-channel="match"
data-match-id="{{ m.match_external_id }}"
onchange="saveTourChannel('{{ m.match_external_id }}')"
{% if channel in ['match', 'match_and_premier'] %}checked{% endif %}
>
Матч
</label>
<label>
<label class="channel-check">
<input
type="checkbox"
class="tour-channel-checkbox"
data-channel="match_premier"
data-match-id="{{ m.match_external_id }}"
onchange="saveTourChannel('{{ m.match_external_id }}')"
{% if channel in ['match_premier', 'match_and_premier'] %}checked{% endif %}
>
Матч Премьер
</label>
</td>
</tr>
{% endfor %}
</tbody>