Skip to content

Commit

Permalink
Fix issue with missing endtrans tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdHeat committed Jun 21, 2023
1 parent 34c5812 commit 5007016
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions templates/teams/public.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ <h3>{% trans %}Members{% endtrans %}</h3>
<table class="table table-striped">
<thead>
<tr>
<td><b>{% trans %}User Name{% trans %}</b></td>
<td><b>{% trans %}User Name{% endtrans %}</b></td>
<td><b>{% trans %}Score{% endtrans %}</b></td>
</tr>
</thead>
Expand Down Expand Up @@ -169,15 +169,15 @@ <h3>{% trans %}Solves{% endtrans %}</h3>
<div class="row" x-data="TeamGraphs">
<div class="col-md-6 d-none d-md-block d-lg-block py-4">
<div class="progress">
<div
class="progress-bar"
role="progressbar"
:style="{ width: `${getSolvePercentage()}%`, 'background-color': 'rgb(0, 209, 64)' }"
<div
class="progress-bar"
role="progressbar"
:style="{ width: `${getSolvePercentage()}%`, 'background-color': 'rgb(0, 209, 64)' }"
>
</div>
<div
class="progress-bar"
role="progressbar"
<div
class="progress-bar"
role="progressbar"
:style="{ width: `${getFailPercentage()}%`, 'background-color': 'rgb(207, 38, 0)' }"
>
</div>
Expand All @@ -198,9 +198,9 @@ <h3>{% trans %}Solves{% endtrans %}</h3>
<div class="col-md-6 d-none d-md-block d-lg-block py-4">
<div class="progress">
<template x-for="category in getCategoryBreakdown()" :key="category.name">
<div
class="progress-bar"
role="progressbar"
<div
class="progress-bar"
role="progressbar"
:style="{ width: `${category.percent}%`, 'background-color': category.color }"
>
</div>
Expand Down

0 comments on commit 5007016

Please sign in to comment.