This commit is contained in:
Levi 2017-01-09 09:34:25 -05:00
parent f9387cd6b8
commit ef07f5da83
4 changed files with 17 additions and 10 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-06 10:01-0500\n"
"POT-Creation-Date: 2017-01-06 10:45-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -49,11 +49,11 @@ msgstr "Endlich: bezahlbares VM Hosting in der Schweiz"
#: templates/datacenterlight/index.html:111
msgid "What is it?"
msgstr "Was ist es?""
msgstr "Was ist es?"
#: templates/datacenterlight/index.html:114
msgid "I want it!"
msgstr ""
msgstr "Das will ich haben!"
#: templates/datacenterlight/index.html:137
msgid "How it works :"
@ -92,9 +92,10 @@ msgid ""
"internet connection. Our VM costs less thanks to our featherlight "
"infrastructure."
msgstr ""
"Unser Datacenter befindet sich in der Schweiz und"
"ist mit zuverlässiger Energieversorgung sowie schneller Internetverbindung ausgestattet."
"Unser Angebot ist aufgrund unserer federleichten Infrastruktur überaus kostengünstig."
"Unser Datacenter befindet sich in der Schweiz undist mit zuverlässiger "
"Energieversorgung sowie schneller Internetverbindung ausgestattet.Unser "
"Angebot ist aufgrund unserer federleichten Infrastruktur überaus "
"kostengünstig."
#: templates/datacenterlight/index.html:209
msgid "We are cutting down the costs significantly!"
@ -138,12 +139,16 @@ msgstr "Beantrage Beta-Zugang"
#: templates/datacenterlight/index.html:298
msgid "QUESTIONS?"
msgstr "FRAGEN?"
msgstr "Fragen?"
#: templates/datacenterlight/index.html:299
msgid "CONTACT US!"
msgstr "Kontaktiere uns!"
#: templates/datacenterlight/index.html:303
msgid "Switzerland "
msgstr "Schweiz"
#: templates/datacenterlight/index.html:328
msgid "Home"
msgstr "Home"

View File

@ -300,7 +300,7 @@
<h3>ungleich GmbH </h3>
<p><i class="fa fa-envelope-o"></i> info@datacenterlight.ch</p>
<p>In der Au 7, Schwanden 8762</p>
<p>Switzerland</p>
<p>{% trans "Switzerland " %}</p>
<button type="button" class="btn btn-default">
<a href="https://twitter.com/ungleich">

View File

@ -123,9 +123,11 @@ class BookingDateForm(forms.Form):
raise forms.ValidationError("Your end date must be greather than your start date.")
q1 = Q(bookingorder__customer__user=self.user,
start_date__lte=start_date, end_date__gte=start_date)
start_date__lte=start_date, end_date__gte=start_date,
bookingorder__status=BookingOrder.APPROVED)
q2 = Q(bookingorder__customer__user=self.user,
start_date__gt=start_date, start_date__lte=end_date)
start_date__gt=start_date, start_date__lte=end_date,
bookingorder__status=BookingOrder.APPROVED)
if Booking.objects.filter(q1 | q2).exists():
raise forms.ValidationError("You already have a booking in these dates.")