diff --git a/scipost/forms.py b/scipost/forms.py index c058e5e1d756aad4cd9eb96512ab7cd943d15eb2..fceb784338b8161c302d2f80175725fb436f8f98 100644 --- a/scipost/forms.py +++ b/scipost/forms.py @@ -30,7 +30,7 @@ class RegistrationForm(forms.Form): username = forms.CharField(label='* Username', max_length=100) password = forms.CharField(label='* Password', widget=forms.PasswordInput()) password_verif = forms.CharField(label='* Verify pwd', widget=forms.PasswordInput()) - captcha = CaptchaField(label='* Captcha') + captcha = CaptchaField(label='* I am not a robot') #class RegistrationFormUser(forms.ModelForm): # class Meta: diff --git a/scipost/templates/scipost/about.html b/scipost/templates/scipost/about.html index 5b7ce49d0146b0cceb2a8ca22cf6d3718d6255a5..eea2b9dfd3b438234d23d26b57ac28c12c2ae70b 100644 --- a/scipost/templates/scipost/about.html +++ b/scipost/templates/scipost/about.html @@ -14,7 +14,8 @@ <div class="row"> <div class="col-6"> <h1>About SciPost</h1> - <h4>Read the original <a href="{% static 'scipost/info/SciPost_Description.pdf' %}">SciPost description document</a>. + <h4>Read the original <a href="{% static 'scipost/info/SciPost_Description.pdf' %}">SciPost description document</a>.</h4> + <h4><a href="{% url 'scipost:FAQ' %}">Frequently asked questions</a>.</h4> </div> <div class="col-6"> <p>SciPost is a complete scientific publication portal.</p> @@ -53,7 +54,7 @@ <section> <div class="row"> <div class="col-3"> - <h1>SciPost is endorsed by the</h1> + <h1>SciPost is endorsed by</h1> </div> <div class="col-3"> <a href="http://www.nwo.nl/en"><img src="{% static 'scipost/images/NWO_logo_EN.jpg' %}" alt="NWO logo" width='300px' /></a> @@ -64,7 +65,9 @@ <p style="font-size: 50%">FOM is part of NWO</p> </div> --> - <div class="col-6"> + <div class="col-1"> + </div> + <div class="col-5"> <p>All articles published in SciPost Journals fulfill the Gold standard Open Access requirements of the NWO, as stipulated on the NWO’s <a href="http://www.nwo.nl/en/policies/open+science">Open Science page</a>.</p> </div> </div> diff --git a/scipost/templates/scipost/index.html b/scipost/templates/scipost/index.html index 17747b1f5455e25bf850c36acab205fbf3638497..1332a5e917a93581c1f95d265421207e68033cd3 100644 --- a/scipost/templates/scipost/index.html +++ b/scipost/templates/scipost/index.html @@ -12,6 +12,7 @@ <h1><a href="{% url 'scipost:about' %}">About SciPost</a></h1> <p>SciPost is a complete scientific publication portal managed by active professional scientists.</p> <p>It is purely online-based and offers freely, openly, globally and perpetually accessible science.</p> + <h3><a href="{% url 'scipost:FAQ' %}">Frequently asked questions</a></h3> <h3><a href="{% url 'scipost:about' %}">Read more</a></h3> </div> <div class="col-1"></div> diff --git a/scipost/urls.py b/scipost/urls.py index e171dece801cac46183b03f2b97b7c3f7b054bdb..7cbe5ea09f8948b39bc18fc092629b441d58648f 100644 --- a/scipost/urls.py +++ b/scipost/urls.py @@ -7,6 +7,7 @@ urlpatterns = [ url(r'^base$', views.base, name='base'), # Info url(r'^about$', views.about, name='about'), + url(r'^FAQ$', views.FAQ, name='FAQ'), url(r'^description$', views.description, name='description'), url(r'^peer_witnessed_refereeing$', views.peer_witnessed_refereeing, name='peer_witnessed_refereeing'), ################ diff --git a/scipost/views.py b/scipost/views.py index 15951feb5dd9b7e94e78048f936306b630455170..2ac041b85f0caa81d1a4d09d1529b50fb84c722a 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -39,6 +39,9 @@ def base(request): def about(request): return render(request, 'scipost/about.html') +def FAQ(request): + return render(request, 'scipost/FAQ.html') + def description(request): response = HttpResponse(content_type='application/pdf') response['Content-Disposition'] = 'filename="SciPost_Description.pdf"'