Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
concrexit
Commits
55e2abd5
Unverified
Commit
55e2abd5
authored
Jul 26, 2016
by
Joost Rijneveld
Browse files
Add contact page
parent
7cbb4627
Changes
5
Hide whitespace changes
Inline
Side-by-side
website/thaliawebsite/locale/nl/LC_MESSAGES/django.mo
View file @
55e2abd5
No preview for this file type
website/thaliawebsite/locale/nl/LC_MESSAGES/django.po
View file @
55e2abd5
...
...
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-07-26 21:1
4
+0200\n"
"PO-Revision-Date: 2016-07-26 21:
1
4+0100\n"
"POT-Creation-Date: 2016-07-26 21:
5
1+0200\n"
"PO-Revision-Date: 2016-07-26 21:
5
4+0100\n"
"Last-Translator: Joost Rijneveld <joost@joostrijneveld.nl>\n"
"Language-Team: \n"
"Language: nl\n"
...
...
@@ -119,7 +119,8 @@ msgstr ""
msgid "Add Summary"
msgstr ""
#: menus.py:32
#: menus.py:32 templates/singlepages/contact.html:4
#: templates/singlepages/contact.html:7
msgid "Contact"
msgstr ""
...
...
@@ -155,6 +156,54 @@ msgid ""
" "
msgstr ""
#: templates/singlepages/contact.html:11
msgid "Faculty:"
msgstr "Faculteit:"
#: templates/singlepages/contact.html:12
msgid "Faculty of Science"
msgstr "Faculteit der Natuurwetenschappen, Wiskunde & Informatica"
#: templates/singlepages/contact.html:15
msgid "Room:"
msgstr "Kamer:"
#: templates/singlepages/contact.html:19
msgid "Address:"
msgstr "Adres:"
#: templates/singlepages/contact.html:20
msgid "Board room: HG00.150 (above the north-canteen)"
msgstr "Bestuurskamer: HG00.150 (boven de noordkantine)"
#: templates/singlepages/contact.html:23
msgid "Postal address:"
msgstr "Postadres:"
#: templates/singlepages/contact.html:27
msgid "Telephone:"
msgstr "Telefoon:"
#: templates/singlepages/contact.html:31
msgid "Voicemailbox:"
msgstr "Voicemailbox:"
#: templates/singlepages/contact.html:35
msgid "Email:"
msgstr "E-mail:"
#: templates/singlepages/contact.html:37
msgid "general"
msgstr "algemeen"
#: templates/singlepages/contact.html:38
msgid "communication w.r.t. promoting your company (activities)"
msgstr "communicatie over het promoten van uw bedrijf(sactiviteiten)"
#: templates/singlepages/contact.html:50
msgid "VAT number:"
msgstr "BTW-nummer:"
#: templates/singlepages/sister_associations.html:7
msgid "Associations of the Radboud University Science Faculty"
msgstr "Bètaverenigingen van de Radboud Universiteit"
...
...
website/thaliawebsite/menus.py
View file @
55e2abd5
...
...
@@ -29,5 +29,5 @@ main = [
{
'title'
:
_
(
'Add Exam'
),
'name'
:
'#'
},
{
'title'
:
_
(
'Add Summary'
),
'name'
:
'#'
},
]},
{
'title'
:
_
(
'Contact'
),
'name'
:
'
#
'
},
{
'title'
:
_
(
'Contact'
),
'name'
:
'
contact
'
},
]
website/thaliawebsite/templates/singlepages/contact.html
0 → 100644
View file @
55e2abd5
{% extends "base.html" %}
{% load i18n %}
{% block page_title %}{% trans "Contact" %}{% endblock %}
{% block body %}
<h1>
{% trans "Contact" %}
</h1>
<table
class=
"table"
>
<tr>
<td>
{% trans "Faculty:" %}
</td>
<td>
{% trans "Faculty of Science" %}
</td>
</tr>
<tr>
<td>
{% trans "Room:" %}
</td>
<td>
HG00.150
</td>
</tr>
<tr>
<td
valign=
"top"
>
{% trans "Address:" %}
</td>
<td>
Heyendaalseweg 135
<br>
6525 AJ Nijmegen
<br>
{% trans "Board room: HG00.150 (above the north-canteen)" %}
</td>
</tr>
<tr>
<td
valign=
"top"
>
{% trans "Postal address:" %}
</td>
<td>
Postbus 9010
<br>
6500 GL Nijmegen
</td>
</tr>
<tr>
<td>
{% trans "Telephone:" %}
</td>
<td>
024 - 3652079
</td>
</tr>
<tr>
<td>
{% trans "Voicemailbox:" %}
</td>
<td>
084 - 8339677
</td>
</tr>
<tr>
<td
valign=
"top"
>
{% trans "Email:" %}
</td>
<td>
<a
href=
"mailto:info@thalia.nu"
>
info@thalia.nu
</a>
{% trans "general" %}
<br>
<a
href=
"mailto:samenwerking@thalia.nu"
>
samenwerking@thalia.nu
</a>
{% trans "communication w.r.t. promoting your company (activities)" %}
</td>
</tr>
<tr>
<td
valign=
"top"
>
Kamer van Koophandel:
</td>
<td>
40146464
</td>
</tr>
<tr>
<td
valign=
"top"
>
IBAN:
</td>
<td>
NL23INGB0006234184
</td>
</tr>
<tr>
<td
valign=
"top"
>
{% trans "VAT number:" %}
</td>
<td>
NL800232483B02
</td>
</tr>
</table>
{% endblock %}
website/thaliawebsite/urls.py
View file @
55e2abd5
...
...
@@ -27,6 +27,7 @@ urlpatterns = [
TemplateView
.
as_view
(
template_name
=
'singlepages/sister_associations.html'
),
name
=
'sister-associations'
),
])),
url
(
r
'^contact$'
,
TemplateView
.
as_view
(
template_name
=
'singlepages/contact.html'
),
name
=
'contact'
),
# Default login helpers
url
(
r
'^'
,
include
(
'django.contrib.auth.urls'
)),
]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment