diff --git a/static/style.css b/static/style.css index d4cb83d..74f851b 100644 --- a/static/style.css +++ b/static/style.css @@ -385,7 +385,7 @@ background-color:#FF0B7E .testContent input[type=submit]{ height: 30px; - width: 150px; + width: 175px; color: #FFF; font-size: 17px; background: #00916E; diff --git a/templates/account.html b/templates/account.html index b2da2b7..ff59292 100644 --- a/templates/account.html +++ b/templates/account.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Account{% endblock %} +{% block title %}Konto{% endblock %} {% block content %}
@@ -8,9 +8,9 @@ Card image cap
{{user.first_name}} {{user.last_name}}

Email: {{user.email}}

-
-
-
+
+
+
{% endblock %} diff --git a/templates/addQuestions.html b/templates/addQuestions.html index 51004a3..66e47bc 100644 --- a/templates/addQuestions.html +++ b/templates/addQuestions.html @@ -8,30 +8,30 @@ {% block content %}
-

Add questions

+

Dodaj pytania

{% for i in request.GET.number_of_questions|times %} -

Question {{forloop.counter}}

- +

Pytanie {{forloop.counter}}

+

- +

- +

- +

- +

- + +
{% endblock %} diff --git a/templates/base.html b/templates/base.html index 1b71b5f..a0de2cb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -12,12 +12,12 @@
- Home - Create test - Your tests - Solved tests - Help -

Categories

+ Strona główna + Stwórz test + Twoje testy + Wyniki testów + Pomoc +

Kategorie

Język polski Język angielski Język niemiecki @@ -28,9 +28,9 @@ Biologia Geografia Historia -

Account

- Settings - Logout +

Konto

+ Ustawienia + Wyloguj
diff --git a/templates/category.html b/templates/category.html index 0aa43e5..82425e6 100644 --- a/templates/category.html +++ b/templates/category.html @@ -1,24 +1,24 @@ {% extends "base.html" %} -{% block title %}Category - {{name}}{% endblock %} +{% block title %}Kategoria - {{name}}{% endblock %} {% block content %} -

Tests in {{name}} category

+

Testy w kategorii {{name}}

{% for test in tests %}
{{test.name}}
-
Category: {{test.category}}
-
Passing score: {{test.passing_score}}
-
Questions: {{test.questions|length}}
+
Kategoria: {{test.category}}
+
Próg zaliczenia: {{test.passing_score}}
+
Ilość pytań: {{test.questions|length}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus volutpat scelerisque tortor, id sodales leo finibus id. Vivamus id viverra nunc, ac faucibus metus. Nulla a mauris imperdiet sapien lobortis dapibus. Quisque ornare posuere pulvinar.
- +

{% endfor %} diff --git a/templates/changeEmail.html b/templates/changeEmail.html index bc6133a..b9b70a9 100644 --- a/templates/changeEmail.html +++ b/templates/changeEmail.html @@ -1,15 +1,15 @@ {% extends "base.html" %} -{% block title %}Update email{% endblock %} +{% block title %}Zaktualizuj email{% endblock %} {% block content %}


-

+

{% endblock %} diff --git a/templates/changeName.html b/templates/changeName.html index 9501a5c..8dd1beb 100644 --- a/templates/changeName.html +++ b/templates/changeName.html @@ -1,16 +1,16 @@ {% extends "base.html" %} -{% block title %}Update name{% endblock %} +{% block title %}Zaktualizuj imię{% endblock %} {% block content %}
-

-

-

+

+

+

{% endblock %} diff --git a/templates/changePassword.html b/templates/changePassword.html index fa796a1..d17d21c 100644 --- a/templates/changePassword.html +++ b/templates/changePassword.html @@ -1,17 +1,17 @@ {% extends "base.html" %} -{% block title %}Update name{% endblock %} +{% block title %}Zmień hasło{% endblock %} {% block content %}
-

-

-

-

+

+

+

+

{% endblock %} diff --git a/templates/createTest.html b/templates/createTest.html index 7026390..4746c1a 100644 --- a/templates/createTest.html +++ b/templates/createTest.html @@ -2,16 +2,16 @@ {% load filters %} {% load rest_framework %} -{% block title %}New Test{% endblock %} +{% block title %}Nowy test{% endblock %} {% block content %}
-

Create test

- - +

Stwórz test

+ +

- +

- +

- +

diff --git a/templates/editTest.html b/templates/editTest.html index 59ba99a..5b87c7d 100644 --- a/templates/editTest.html +++ b/templates/editTest.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load rest_framework %} -{% block title %}{{ test.name }} - Edit{% endblock %} +{% block title %}{{ test.name }} - Edytuj{% endblock %} {% block additional_head %} @@ -12,24 +12,24 @@
- - + +
{% for question in test.questions.all %}
- +
{% for answer in question.answers.all %}
- +
{% endfor %}
- + +
diff --git a/templates/generic_test.html b/templates/generic_test.html index 654091e..3c0e8fe 100644 --- a/templates/generic_test.html +++ b/templates/generic_test.html @@ -43,7 +43,7 @@
{% endfor %}
- +
diff --git a/templates/home.html b/templates/home.html index 0d99d6e..9eb0822 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,24 +1,24 @@ {% extends "base.html" %} -{% block title %}Home{% endblock %} +{% block title %}Główna{% endblock %} {% block content %} -

Take some tests!

+

Rozwiąż sobie jakiś test!

{% for test in tests %}
{{test.name}}
-
Category: {{test.category}}
-
Passing score: {{test.passing_score}}
-
Questions: {{test.questions|length}}
+
Kategoria: {{test.category}}
+
Próg zaliczenia: {{test.passing_score}}
+
Ilość pytań: {{test.questions|length}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus volutpat scelerisque tortor, id sodales leo finibus id. Vivamus id viverra nunc, ac faucibus metus. Nulla a mauris imperdiet sapien lobortis dapibus. Quisque ornare posuere pulvinar.
- +

{% endfor %} diff --git a/templates/login.html b/templates/login.html index 616a453..4e93a58 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,9 +1,9 @@ {% extends "authBase.html" %} -{% block title %}Login{% endblock %} +{% block title %}Zaloguj się{% endblock %} {% block content %} -

Log In

+

Zaloguj się

{% csrf_token %} {% for field in login_form %} @@ -15,9 +15,12 @@ {% endfor %}

{% endfor %} - +
- Reset password + Zapomniałem hasła +
+
+ Wróć
{% endblock %} diff --git a/templates/logout.html b/templates/logout.html index b44b84a..a618bf4 100644 --- a/templates/logout.html +++ b/templates/logout.html @@ -1,11 +1,11 @@ {% extends "authBase.html" %} -{% block title %}Log Out{% endblock %} +{% block title %}Wyloguj{% endblock %} {% block content %} -

You have been logged out successfully

+

Zostałeś pomyślnie wylogowany

- Continue + Kontynuj
{% endblock %} diff --git a/templates/myTests.html b/templates/myTests.html index 5e8e378..b19649e 100644 --- a/templates/myTests.html +++ b/templates/myTests.html @@ -1,27 +1,27 @@ {% extends "base.html" %} -{% block title %}My Tests{% endblock %} +{% block title %}Moje testy{% endblock %} {% block content %} -

Check your tests

+

Twoje testy

{% for test in tests %}
{{test.name}}
-
Category: {{test.category}}
-
Passing score: {{test.passing_score}}
-
Questions: {{test.questions|length}}
+
Kategoria: {{test.category}}
+
Próg zaliczenia: {{test.passing_score}}
+
Ilość pytań: {{test.questions|length}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus volutpat scelerisque tortor, id sodales leo finibus id. Vivamus id viverra nunc, ac faucibus metus. Nulla a mauris imperdiet sapien lobortis dapibus. Quisque ornare posuere pulvinar.
- - - + + +

diff --git a/templates/register.html b/templates/register.html index 1799eb8..ed7c281 100644 --- a/templates/register.html +++ b/templates/register.html @@ -1,9 +1,9 @@ {% extends "authBase.html" %} -{% block title %}Create account{% endblock %} +{% block title %}Stwórz konto{% endblock %} {% block content %} -

Register

+

Stwórz konto

{% csrf_token %} {% for field in registration_form %} @@ -15,7 +15,7 @@ {% endfor %}

{% endfor %} - +
{% endblock %} diff --git a/templates/registerSuccess.html b/templates/registerSuccess.html index 2c66dc4..e17d00c 100644 --- a/templates/registerSuccess.html +++ b/templates/registerSuccess.html @@ -1,9 +1,11 @@ {% extends "authBase.html" %} -{% block title %}Log Out{% endblock %} +{% block title %}Zarejestrowano{% endblock %} {% block content %} -

Account have been created successfully. Now you can log in

- Log in now +

Konto zostało pomyśłnie utworzone.
Możesz się już zalogować.

+
+ Zaloguj się +
{% endblock %} diff --git a/templates/resetPassword.html b/templates/resetPassword.html index 9185505..2075253 100644 --- a/templates/resetPassword.html +++ b/templates/resetPassword.html @@ -1,15 +1,15 @@ {% extends "authBase.html" %} -{% block title %}Reset password{% endblock %} +{% block title %}Reset hasła{% endblock %} {% block content %} -

Reset password

+

Reset hasła



-

+

- Go back + Wróć
{% endblock %} diff --git a/templates/restePasswordConfirm.html b/templates/restePasswordConfirm.html index 36005c5..9076f46 100644 --- a/templates/restePasswordConfirm.html +++ b/templates/restePasswordConfirm.html @@ -1,16 +1,16 @@ {% extends "authBase.html" %} -{% block title %}Confirm reset password{% endblock %} +{% block title %}Reset hasła{% endblock %} {% block content %} -

Create new password

+

Stwórz nowe hasło



-

-

-

-

-

+

+

+

+

+

{% endblock %} diff --git a/templates/result.html b/templates/result.html index 801874a..1f4dc9c 100644 --- a/templates/result.html +++ b/templates/result.html @@ -20,12 +20,12 @@ Słabiutko, ale następnym razem będzie lepiej {% endif %} -
Result: {{ status }}
-
Score: {{ points }}
-
Passing Score: {{ passing }}
-
Max Score: {{ max }}
-
Percentage: {{ percentage }}
- +
Rezultat: {{ status }}
+
Twój wynik: {{ points }}
+
Próg zaliczenia: {{ passing }}
+
Maksymalny wynik: {{ max }}
+
Wynik procentowy: {{ percentage }}
+ {#

Correct answers: 3

#} {#

Incorrect answers: 2

#} {#

Total questions: 5

#} diff --git a/templates/solvedTests.html b/templates/solvedTests.html index 9d4fdd9..58a58f4 100644 --- a/templates/solvedTests.html +++ b/templates/solvedTests.html @@ -1,19 +1,18 @@ {% extends "base.html" %} -{% block title %}Home{% endblock %} +{% block title %}Rozwiązane testy{% endblock %} {% block content %} -

Your history

+

Historia rozwiązanych testów

{% for test in tests %}
{{test.name}}
-
Your score: {{test.score}}
-
Passing score: {{test.passing_score}}
-
Max score: {{test.max}}
-
Percentage: {{test.percentage}}
- +
Twój wynik: {{test.score}}
+
Próg zaliczenia: {{test.passing_score}}
+
Maksymalny wynik: {{test.max}}
+
Wynik procentowy: {{test.percentage}}

{% endfor %} diff --git a/templates/welcome.html b/templates/welcome.html index 6657948..ccc2342 100644 --- a/templates/welcome.html +++ b/templates/welcome.html @@ -4,8 +4,8 @@ {% block content %}

Super Original and Innovative Test App

-

Get started now

- - +

Zacznij już teraz!

+ + {% endblock %}