Merge branch 'main' of https://gitea.staxriver.com/staxriver/padelclub_backend
commit
17ea4c185b
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.11 on 2024-09-28 15:21 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0087_alter_playerregistration_phone_number'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='groupstage', |
||||
name='step', |
||||
field=models.IntegerField(default=0), |
||||
), |
||||
] |
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,20 +1,22 @@ |
||||
{% load static %} |
||||
<div class="bubble"> |
||||
<template x-for="(ranking, index) in column" > |
||||
<div> |
||||
<div class="table-row-3-colums-ranks"> |
||||
|
||||
<div> |
||||
<div class="table-row-3-colums-ranks"> |
||||
<div class="table-cell"><div class="mybox center"><span x-text="ranking.formatted_ranking"></div></div> |
||||
<div class="table-cell table-cell-large padding-left semibold"> |
||||
|
||||
<div class="table-cell"><div class="mybox center"><span x-text="ranking.formatted_ranking"></div></div> |
||||
<div class="table-cell table-cell-large padding-left semibold"> |
||||
|
||||
<template x-for="name in ranking.names" > |
||||
<div><span x-text="name"></div> |
||||
</template> |
||||
<template x-for="name in ranking.names" > |
||||
<div><span x-text="name"></div> |
||||
</template> |
||||
</div> |
||||
{% if tournament.display_points_earned %} |
||||
<div class="table-cell right horizontal-padding numbers"><span x-text="ranking.points"></div> |
||||
{% endif %} |
||||
</div> |
||||
<div x-show="index < column.length - 1"> |
||||
<hr/> |
||||
</div> |
||||
</div> |
||||
{% if tournament.display_points_earned %} |
||||
<div class="table-cell right horizontal-padding numbers"><span x-text="ranking.points"></div> |
||||
{% endif %} |
||||
</div> |
||||
<div x-show="index < column.length - 1"> |
||||
<hr/> |
||||
</div> |
||||
</template> |
||||
</div> |
||||
|
||||
Loading…
Reference in new issue