fix solve list for event challenges, fix link color

This commit is contained in:
ix 2021-10-23 11:13:02 +02:00
parent a8b5e7f61d
commit 48f9021839
3 changed files with 2 additions and 4 deletions

View File

@ -69,7 +69,6 @@
<tr> <tr>
<th scope="col">{% trans "Username" %}</th> <th scope="col">{% trans "Username" %}</th>
<th scope="col">{% trans "Website" %}</th> <th scope="col">{% trans "Website" %}</th>
<th scope="col">{% trans "Score" %}</th>
<th scope="col">{% trans "Date" %}</th> <th scope="col">{% trans "Date" %}</th>
</tr> </tr>
</thead> </thead>
@ -78,7 +77,6 @@
<tr> <tr>
<th scope="row"><a class="profile_link" href="{% url 'accounts:profile' user_name=s.user.username %}"> {{ s.user.username }}</a></th> <th scope="row"><a class="profile_link" href="{% url 'accounts:profile' user_name=s.user.username %}"> {{ s.user.username }}</a></th>
<td>{{ s.user.userprofileinfo.portfolio_site }}</td> <td>{{ s.user.userprofileinfo.portfolio_site }}</td>
<td>{{ s.user.userprofileinfo.score }}</td>
<td>{{ s.flag_date }}</td> <td>{{ s.flag_date }}</td>
</tr> </tr>
{% endfor %} {% endfor %}

View File

@ -1,6 +1,6 @@
body {background-color: #121212;color: #D9D9D9} body {background-color: #121212;color: #D9D9D9}
.card-body {background-color: #1D1D1D;} .card-body {background-color: #1D1D1D;}
a{color:#cecece;} a{color:#4375aa;}
a:hover{color:#a9a9a9;text-decoration: none;} a:hover{color:#a9a9a9;text-decoration: none;}
.main-div{margin-top: 40px;} .main-div{margin-top: 40px;}
footer {text-align: center;} footer {text-align: center;}

View File

@ -1,6 +1,6 @@
body {background-color: #121212;color: #D9D9D9} body {background-color: #121212;color: #D9D9D9}
.card-body {background-color: #1D1D1D;} .card-body {background-color: #1D1D1D;}
a{color:#cecece;} a{color:#4375aa;}
a:hover{color:#a9a9a9;text-decoration: none;} a:hover{color:#a9a9a9;text-decoration: none;}
.main-div{margin-top: 40px;} .main-div{margin-top: 40px;}
footer {text-align: center;} footer {text-align: center;}