This commit is contained in:
Piotr Kopycki 2022-06-05 17:38:05 +02:00
parent 2e32d18dfe
commit 4266adb76c
3 changed files with 29 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def home(request):
@login_required @login_required
def help(request): def help(request):
return render(request, 'help.html', ) return render(request, 'help-new.html', )
@login_required @login_required
def popular(request): def popular(request):

View File

@ -264,6 +264,11 @@
outline: none; outline: none;
} }
.tournamentRankingText {
color: #808080;
text-align: center;
}
.tournamentButton a { .tournamentButton a {
color: inherit; color: inherit;
text-decoration: inherit; text-decoration: inherit;
@ -274,6 +279,10 @@
text-decoration: inherit; text-decoration: inherit;
} }
.tournamentName{
text-align: center;
}
.mainTestContainer a { .mainTestContainer a {
color: inherit; color: inherit;
text-decoration: inherit; text-decoration: inherit;

19
templates/help-new.html Normal file
View File

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}Help{% endblock %}
{% block content %}
<h1>Pogubiłeś się w działaniu aplikacji? Sprawdź instrukcję obsługi.</h1>
<h2>Spis treści:</h2>
<div class="linkDefault">
<a href="help/1">1. Ogólny układ strony</a><br><br>
<a href="help/2">2. Rozwiązywanie testów</a><br><br>
<a href="help/3">3. Tworzenie testów</a><br><br>
<a href="help/4">4. Edycja testów</a><br><br>
<a href="help/5">5. Przeglądanie historii testów</a><br><br>
<a href="help/6">6. Rozwiązywanie testów</a>
</div>
<h3>Mamy nadzieję, że nasza instrukcja jest pomocna i że będziesz mógł na spokojnie wykorzystać cały potencjał aplikacji i zabrać się za rozwiązywanie (lub tworzenie) nowych testów :)</h3>
{% endblock %}