diff --git a/Changelog b/Changelog index b58871b6..7491cbd1 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +1.0.13: 2017-06-13 + * [datacenterlight] Added translations for email and name placeholders fields 1.0.12: 2017-06-13 * [datacenterlight] Added from address for EmailMessage that was missing 1.0.11: 2017-06-12 diff --git a/datacenterlight/locale/de/LC_MESSAGES/django.mo b/datacenterlight/locale/de/LC_MESSAGES/django.mo index 028dfcbe..c34cf654 100644 Binary files a/datacenterlight/locale/de/LC_MESSAGES/django.mo and b/datacenterlight/locale/de/LC_MESSAGES/django.mo differ diff --git a/datacenterlight/locale/de/LC_MESSAGES/django.po b/datacenterlight/locale/de/LC_MESSAGES/django.po index f97b2a6b..dd319e57 100644 --- a/datacenterlight/locale/de/LC_MESSAGES/django.po +++ b/datacenterlight/locale/de/LC_MESSAGES/django.po @@ -187,9 +187,25 @@ msgstr "Standort des Datacenters ist in der Schweiz" msgid "10 GB Storage (SSD)" msgstr "10 GB Storage (SSD)" -#: templates/datacenterlight/home.html:163 -#: templates/datacenterlight/order.html:74 -#: templates/datacenterlight/pricing.html:76 +#: templates/datacenterlight/index.html:289 +msgid "Name" +msgstr "" + +#: templates/datacenterlight/index.html:290 +msgid "Your Name" +msgstr "Dein Name" + +#: templates/datacenterlight/index.html:293 +msgid "Email" +msgstr "E-Mail-Adresse" + +#: templates/datacenterlight/index.html:294 +msgid "Your Email" +msgstr "Deine E-Mail" + +#: templates/datacenterlight/index.html:297 +#: templates/datacenterlight/order.html:133 +#: templates/datacenterlight/pricing.html:161 msgid "Order Now!" msgstr "Bestelle jetzt!" diff --git a/datacenterlight/templates/datacenterlight/index.html b/datacenterlight/templates/datacenterlight/index.html new file mode 100755 index 00000000..8082764b --- /dev/null +++ b/datacenterlight/templates/datacenterlight/index.html @@ -0,0 +1,312 @@ +{% extends "datacenterlight/base.html" %} +{% load staticfiles i18n%} +{% get_current_language as LANGUAGE_CODE %} + +{% block content %} + + +
+
+ +
+
+ +
+

DataCenterLight

+

{% trans "Finally, an affordable VM hosting in Switzerland!" %}

+
+ +
+
+
+ +
+
+
+ + +
+ + + +
+ +
+
+
+ +
+
+
+
+

{% trans "What is it" %}

+
+
+
    +
  • + +

    {% trans "Reuses existing factory halls instead of building a new expensive building." %} +

    +
  • +
  • + +

    {% trans "Only wants you to pay for what you actually need." %}

    +
  • +
  • + +

    {% trans "Is creative, using a modern and alternative design for a data center in order to make it more sustainable and affordable at the same time." %}

    +
  • +
  • + +

    {% trans "Cuts down the costs for you by using FOSS (Free Open Source Software) exclusively, wherefore we can save money from paying licenses." %}

    +
  • +
+ +
+
+
+
+
+ + +
+ +
+ +
+
+
+
+
+

{% trans "Scale out" %}

+
+
+

{% trans "We don't use special hardware. We use commodity hardware: we buy computers that you buy. Just many more and put them in a cozy home for computers called data center." %}

+ +
+
+
+
+ +
+
+
+ + +
+
+ +
+
+
+ +
+
+
+
+

{% trans "Reliable and light" %}

+
+
+

{% trans "Our VMs are located in Switzerland, with reliable power supply and fast internet connection. Our VM costs less thanks to our featherlight infrastructure." %}

+ +
+
+
+
+
+ + +
+ + +
+ +
+ +
+
+

{% trans "Simple and affordable: Try our virtual machine with featherlight price." %}

+

{% trans "Affordable VM hosting based in Switzerland" %}

+
+ +
+
+
+ +
+
+ {% csrf_token %} +
+

{% trans "VM hosting" %}

+
+
+ 15 + CHF/{% trans "month" %} +
+
+
+

{% trans "Hosted in Switzerland" %}

+
+
+ + + Core + +
+
+ + + GB RAM + +
+
+ + + {% trans "GB Storage (SSD)" %} + +
+
+ + +
+ + +
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+ +
+
+
+ +
+ + --> + + +
+
+
+
+ +
+
+
+

ungleich GmbH

+
+
+

info@datacenterlight.ch

+

In der Au 7, Schwanden 8762

+

{% trans "Switzerland " %}

+
+ +
+
+
+
+

{% trans "Questions?" %} {% trans "Contact us!" %}

+
+
+
+ +
+
+ +
+ + + + {% endblock %} \ No newline at end of file diff --git a/datacenterlight/views.py b/datacenterlight/views.py index 8463d6a0..d23c4231 100644 --- a/datacenterlight/views.py +++ b/datacenterlight/views.py @@ -236,7 +236,7 @@ class BetaProgramView(CreateView): class IndexView(CreateView): - template_name = "datacenterlight/home.html" + template_name = "datacenterlight/index.html" model = BetaAccess form_class = BetaAccessForm success_url = "/datacenterlight#requestform"