From 5fe7987b8adeb9ca0ac62e9687954c06c2589125 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 2 May 2015 22:02:19 +0200 Subject: [PATCH] integrate contact - begin to integrate form Signed-off-by: Nico Schottelius --- .../templates/digital_glarus/base.html | 2 +- .../templates/digital_glarus/contact.html | 82 +++++++ .../index.html-full-index-plus-template | 214 ++++++++++++++++++ digital_glarus/urls.py | 2 + digital_glarus/views.py | 6 + 5 files changed, 305 insertions(+), 1 deletion(-) create mode 100755 digital_glarus/templates/digital_glarus/contact.html create mode 100644 digital_glarus/templates/digital_glarus/index.html-full-index-plus-template diff --git a/digital_glarus/templates/digital_glarus/base.html b/digital_glarus/templates/digital_glarus/base.html index 6db2330c..69378e9b 100644 --- a/digital_glarus/templates/digital_glarus/base.html +++ b/digital_glarus/templates/digital_glarus/base.html @@ -70,7 +70,7 @@ About
  • - Contact + Contact
  • diff --git a/digital_glarus/templates/digital_glarus/contact.html b/digital_glarus/templates/digital_glarus/contact.html new file mode 100755 index 00000000..dc6626e5 --- /dev/null +++ b/digital_glarus/templates/digital_glarus/contact.html @@ -0,0 +1,82 @@ +{% extends "digital_glarus/base.html" %} +{% load staticfiles %} + +{% block title %}Contact{% endblock %} + +{% block content %} +
    +
    +
    +
    +

    Contact + DIGITAL.GLARUS +

    +
    +
    +
    + + +
    +
    +

    Phone: + +41 (0) 44 534 66 22 +

    +

    Email: + digital.glarus@ungleich.ch +

    +

    Address: + Hauptstrasse 14, 8775 Luchsingen
    +

    +
    +
    +
    +
    + +
    +
    +
    +
    +

    Contact + form +

    +
    +

    If you want further information on Digital Glarus, please send us a message using the form below.

    +
    +
    +{% if error_message %}

    {{ error_message }}

    {% endif %} + + {% csrf_token %} + {{ form }} + + + +
    +
    +
    +
    +
    + + + + +{% endblock %} diff --git a/digital_glarus/templates/digital_glarus/index.html-full-index-plus-template b/digital_glarus/templates/digital_glarus/index.html-full-index-plus-template new file mode 100644 index 00000000..5212d3dc --- /dev/null +++ b/digital_glarus/templates/digital_glarus/index.html-full-index-plus-template @@ -0,0 +1,214 @@ +{% load staticfiles %} + + + + + + + + + + + + + + + Digital.Glarus - {% block title %}Welcome{% endblock %} + + + + + + + + + + + + + + + + + + + +
    Digital.Glarus
    +
    #1 IT Valley of Switzerland | Luchsingen, 8775 GL Switzerland | From 2015.12.25
    + + + + +
    + +
    +
    +
    + +

    + Welcome to +

    +

    digital.Glarus

    +
    +

    + By + ungleich gmbh + +

    +
    +
    +
    + +
    +
    +
    +
    +

    Build a tech valley in the heart of switzerland

    +
    + +
    +

    Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.

    +

    The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge variety of great food offers forms what we call "Digital Glarus".

    +

    The valley also knows as "Glarnerland" is featured by many gorgeous, eye-catching buildings from former industrial area.

    +

    In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with fitting high quality old age furniture (those you always look at in expensive shops, but never buy - this is how people live here).

    +

     

    +
    +
    +
    + +
    +
    +
    +
    +

    a new area +

    +
    +

    While you can imagine that the old factories, many of them being weaving mills, are not business anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.

    +

    Instead of having the old falling apart, we are thinking of building the new tech centre of Switzerland by converting old, abandoned factory halls into attractive working places.

    +

    But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in Switzerland are more orientated on living healthy, which is exactly what Glarnerland can provide.

    +
    +
    +
    + +
    +
    +
    +
    +

    Why would anyone be interested in it?

    +
    +

    The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments. Furthermore it is expensive and loud. Although the high concentration of people may be helpful to find customers, most tech companies are making their business in the Internet and are not affected by the change. While you can imagine that the old factories, many of them being weaving mills, are not business anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.

    +

    In fact development is hampered by the costs companies and developers have to carry, distracting them from the real work they plan to do.

    +

    While some investment is required to be attractive to tech companies, given the potential of reuse of infrastructure, the costs are estimated to be low and can be a key factor in the development of the Canton Glarus.

    +
    +
    +
    +
    +
    +
    +
    +

    how to realize

    +
    +

    At the moment we at ungleich are talking to authorities and  sponsors. It is crucial to build up some basic infrastructure and  attract early adopters. Building a community (meetup alike)  can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.

    +

    Have you become interested in the project? +

    Contact us at
    +
    + digital.glarus@ungleich.ch // +41 (0) 44 534 66 22 +

    +

    +

     

    +
    +
    +
    + +
    + + + + + + + + + + + + + + + + diff --git a/digital_glarus/urls.py b/digital_glarus/urls.py index 1c6a5b83..b647659e 100644 --- a/digital_glarus/urls.py +++ b/digital_glarus/urls.py @@ -4,6 +4,8 @@ from . import views urlpatterns = [ url(r'^$', views.index, name='index'), + url(r'about$', views.about, name='about'), + url(r'contact$', views.contact, name='contact'), url(r'send_message', views.send_message, name='send_message'), url(r'^(?P[0-9]+)/$', views.detail, name='detail'), ] diff --git a/digital_glarus/views.py b/digital_glarus/views.py index a4e1c4f2..e8428601 100644 --- a/digital_glarus/views.py +++ b/digital_glarus/views.py @@ -14,6 +14,12 @@ def detail(request, message_id): context = { 'message': p, } return render(request, 'digital_glarus/detail.html', context) +def about(request): + pass + +def contact(request): + return render(request, 'digital_glarus/contact.html') + def send_message(request): pass