Skip to content

Commit

Permalink
Merge pull request #13 from fng3r/rc
Browse files Browse the repository at this point in the history
rc 2 master
  • Loading branch information
fng3r authored Jan 31, 2024
2 parents cf07089 + a25eef0 commit bd060aa
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 17 deletions.
51 changes: 34 additions & 17 deletions haxball_site/templates/core/include/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,23 @@
<a class="nav-link font-weight-bold mx-1 text-right text-success"
href="https://www.cis-haxball.com/forum/guides">Гайды</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold mx-1 text-right" href="{% url 'core:lives' %}">Видео</a>
<li class="nav-item font-weight-bold dropdown mx-1 text-right">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown">Медиа</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://www.cis-haxball.com/lives/">Трансляции</a>
<a class="dropdown-item submenu" href="#">Соцсети</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://www.twitch.tv/cis_haxball"><img src="{% static "img/ico/twitch.PNG" %}" title="twitch"
width="20%"> Twitch</a>
<a class="dropdown-item" href="https://www.youtube.com/@cishaxball7528"><img src="/static/img/ico/youtube.PNG" title="youtube"
width="20%"> YouTube</a>
<a class="dropdown-item" href="https://discord.gg/h6mgc4bTJh"><img src="{% static "img/ico/discord.PNG" %}" title="discord"
width="20%"> Discord</a>
<a class="dropdown-item" href="https://t.me/haxnews1337"><img
src="{% static "img/ico/tg_1.png" %}" width="20%"
title="telegram"> Telegram</a>
</div>
<div class="dropdown-menu">
</li>
<li class="nav-item font-weight-bold dropdown mx-1 text-right">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown">
Expand Down Expand Up @@ -172,25 +187,27 @@

<a class="dropdown-item submenu" href="#">ЧР #9</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-A' %}">Группа
А</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-B' %}">Группа
B</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-C' %}">Группа
С</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-D' %}">Группа
D</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-play-off' %}">Плей-офф
Кубка Первой Лиги</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-cup' %}">🏆 Кубок России</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-Volga' %}">Первая лига.
<a class="dropdown-item" href="{% url 'tournament:league' 's9-premier-league' %}">Высшая
лига</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-Volga' %}">Первая лига -
Дивизион
Волги</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-Kama' %}">Первая лига.
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-Kama' %}">Первая лига -
Дивизион
Камы</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-premier-league' %}">🅱️ Высшая
Лига</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-cup' %}"> Кубок России</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-A' %}">Кубок первой лиги - группа
А</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-B' %}">Кубок первой лиги - группа
B</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-C' %}">Кубок первой лиги - группа
С</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-group-D' %}">Кубок первой лиги - группа
D</a>
<a class="dropdown-item" href="{% url 'tournament:league' 's9-first-league-cup-play-off' %}">Кубок первой лиги - плей-офф</a>



</div>

<a class="dropdown-item submenu" href="#">ЧР #10</a>
Expand Down
1 change: 1 addition & 0 deletions haxball_site/tournament/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def get_absolute_url(self):
return reverse('tournament:league', args=[self.slug])

class Meta:
ordering = ['-created']
verbose_name = 'Турнир'
verbose_name_plural = 'Турнир'

Expand Down

0 comments on commit bd060aa

Please sign in to comment.