forked from 42CTF/website
Fix hardcoded logo value in network scoreboard template
This commit is contained in:
parent
9b2da1e2cc
commit
7c06c24d9f
|
@ -8,8 +8,8 @@
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="row justify-content-md-center justify-content-sm-center">
|
<div class="row justify-content-md-center justify-content-sm-center">
|
||||||
<div class="col-4 col-sm-3 col-md-2 podium podium-two text-center">
|
<div class="col-4 col-sm-3 col-md-2 podium podium-two text-center">
|
||||||
<img src="https://42lyon.fr/wp-content/uploads/2022/04/Artboard-1.svg" width="100%"/>
|
<img src="{{ top3.1.0.logo }}" alt="{{ top3.1.0 }}" width="100%"/>
|
||||||
<h3>#2 : </h3>
|
<h3>#2 :</h3>
|
||||||
<p>
|
<p>
|
||||||
Score : {{ top3.1.1 }}
|
Score : {{ top3.1.1 }}
|
||||||
<br>
|
<br>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4 col-sm-3 col-md-2 podium podium-one text-center">
|
<div class="col-4 col-sm-3 col-md-2 podium podium-one text-center">
|
||||||
<img src="http://127.0.0.1:8000/static/img/42ctf_logo_big_no_bg_full_white.svg" width="100%"/>
|
<img src="{{ top3.0.0.logo }}" alt="{{ top3.0.0 }}" width="100%"/>
|
||||||
<h3>#1 : </h3>
|
<h3>#1 : </h3>
|
||||||
<p>
|
<p>
|
||||||
Score : {{ top3.0.1 }}
|
Score : {{ top3.0.1 }}
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4 col-sm-3 col-md-2 podium podium-three text-center">
|
<div class="col-4 col-sm-3 col-md-2 podium podium-three text-center">
|
||||||
<img src="https://42lyon.fr/wp-content/uploads/2022/04/Artboard-1.svg" width="100%"/>
|
<img src="{{ top3.2.0.logo }}" alt="{{ top3.2.0 }}" width="100%"/>
|
||||||
<h3>#3 : </h3>
|
<h3>#3 : </h3>
|
||||||
<p>
|
<p>
|
||||||
Score : {{ top3.2.1 }}
|
Score : {{ top3.2.1 }}
|
||||||
|
|
Loading…
Reference in New Issue