Use undetected-playwright-patch instead of playwright

This commit is contained in:
2024-07-12 22:24:13 +02:00
parent 5ebcb665c2
commit 51c64efd65
6 changed files with 1537 additions and 12 deletions

View File

@ -5,14 +5,15 @@
<div class="row">
<div class="col-lg-3">{% include "partials/toc.html" %}</div>
<div class="col-lg-9">
{% for org in orgs %}
{{ org }}
fsafa
{% endfor %}
{% include "partials/info_box.html" %}
{% include "partials/news.html" %}
{% for game in games %}
{% include "partials/game_card.html" %}
{% for org in orgs %}
<h2 id="org-{{ org|slugify }}">
<a href="#org-{{ org|slugify }}">{{ org }}</a>
</h2>
{% for game in org.games.all %}
{% include "partials/game_card.html" %}
{% endfor %}
{% endfor %}
</div>
</div>

View File

@ -6,9 +6,12 @@
href="#info-box">Information</a>
<a class="list-group-item list-group-item-action plain-text-item"
href="#game-list">Site news</a>
{% for game in games %}
<a class="list-group-item list-group-item-action plain-text-item"
href="#game-{{ game.game_id }}">{{ game.display_name }}</a>
{% for org in orgs %}
{{ org }}
{% for game in org.games.all %}
<a class="list-group-item list-group-item-action plain-text-item"
href="#game-{{ game.game_id }}">{{ game.display_name }}</a>
{% endfor %}
{% endfor %}
</div>
</div>