Skip to content
Snippets Groups Projects
Commit 78ed2a5b authored by maeries's avatar maeries
Browse files

switched svg with png for sponsor logos

parent 56bc05cd
No related branches found
No related tags found
No related merge requests found
Pipeline #278534 passed
......@@ -212,13 +212,13 @@ def get_competition_page_html(self, competition_id):
<div style="margin-bottom: 12px; margin-top: 16px; text-align: center">sponsored by:</div>
<div class="sponsoring-flex">
<div class="sponsor">
<a href="https://murtfeldt.de" target="_blank"><img src="../../murtfeldt.svg"></a>
<a href="https://murtfeldt.de" target="_blank"><img src="../../murtfeldt.png"></a>
</div>
<div class="sponsor">
<a href="https://www.kordel.de" target="_blank"><img src="../../kordel.png"></a>
</div>
<div class="sponsor">
<a href="https://www.vulcanus-stahl.de/" target="_blank"><img src="../../vulcanus.svg"></a>
<a href="https://www.vulcanus-stahl.de/" target="_blank"><img src="../../vulcanus.png"></a>
</div>
</div>
</div>
......
......@@ -275,8 +275,8 @@ class EloSystem:
team_data = self.teams[team_name]
# Generate Elo history chart for this team
# if team_data['history']:
# self.create_team_elo_history_chart(team_name)
if team_data['history']:
self.create_team_elo_history_chart(team_name)
# Filter history for this team's competitions
team_competitions = sorted(team_data['history'], key=lambda x: x['date'], reverse=True)
......@@ -293,7 +293,7 @@ class EloSystem:
print(f"Generating Competition site for {competition_id}")
# Competition results as bar chart
# self.create_competition_result_chart(competition_id)
self.create_competition_result_chart(competition_id)
html_content = get_competition_page_html(self, competition_id)
......
public/murtfeldt.png

19.2 KiB

public/vulcanus.png

26.8 KiB

......@@ -259,13 +259,13 @@ def get_world_ranking_html(self, sorted_teams):
<div style="margin-bottom: 12px; margin-top: 16px; text-align: center">sponsored by:</div>
<div class="sponsoring-flex">
<div class="sponsor">
<a href="https://murtfeldt.de" target="_blank"><img src="../murtfeldt.svg"></a>
<a href="https://murtfeldt.de" target="_blank"><img src="../murtfeldt.png"></a>
</div>
<div class="sponsor">
<a href="https://www.kordel.de" target="_blank"><img src="../kordel.png"></a>
</div>
<div class="sponsor">
<a href="https://www.vulcanus-stahl.de/" target="_blank"><img src="../vulcanus.svg"></a>
<a href="https://www.vulcanus-stahl.de/" target="_blank"><img src="../vulcanus.png"></a>
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment