diff --git a/re2o/settings.py b/re2o/settings.py
index d6d2019a..e2d7015c 100644
--- a/re2o/settings.py
+++ b/re2o/settings.py
@@ -12,7 +12,7 @@ https://docs.djangoproject.com/en/1.8/ref/settings/
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
-from .settings_local import SECRET_KEY, DATABASES, DEBUG, ALLOWED_HOSTS, ASSO_NAME, ASSO_ADDRESS_LINE1, ASSO_ADDRESS_LINE2, ASSO_SIRET, ASSO_EMAIL, ASSO_PHONE, LOGO_PATH
+from .settings_local import SECRET_KEY, DATABASES, DEBUG, ALLOWED_HOSTS, ASSO_NAME, ASSO_ADDRESS_LINE1, ASSO_ADDRESS_LINE2, ASSO_SIRET, ASSO_EMAIL, ASSO_PHONE, LOGO_PATH, services_urls
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
@@ -47,6 +47,7 @@ INSTALLED_APPS = (
'cotisations',
'topologie',
'search',
+ 're2o',
'logs',
'rest_framework'
)
diff --git a/re2o/templates/re2o/index.html b/re2o/templates/re2o/index.html
new file mode 100644
index 00000000..759fd3c5
--- /dev/null
+++ b/re2o/templates/re2o/index.html
@@ -0,0 +1,67 @@
+{% extends "re2o/sidebar.html" %}
+{% load bootstrap3 %}
+{% load staticfiles %}
+
+{% block title %}Accueil{% endblock %}
+
+{% block content %}
+
Bienvenue sur re2o.rez !
+
+
+
+
+
+
+
Zerobin
+
Le zerobin, un service pour partager un contenu avec un lien. Copier-coller, envoyer ! Le lien peut être à usage unique
+
Accéder au zerobin
+
+
+
+
+
+
+
+
Etherpad
+
Etherpad, un pad collaboratif, ouvert, editable par tous ! Un editeur de texte libre qui permet une édition collaborative
+ avec un chat
+
Accéder au pad
+
+
+
+
+
+
+
+
Gitlab
+
Découvrez le gitlab hébérgé par nos soins ! Idéal pour vos projets personnels, ou pour des projets collaboratif !
+ Accès avec votre compte
+
Accéder au gitlab
+
+
+
+
+
+
+
Planner
+
Planner, un service pour planifier les événements à plusieurs, et choisir une date commune. Version open source
+ mise en place par framasoft
+
Accéder au planner
+
+
+
+
+
+
+
+
Kanboard
+
Découvrez kanboard, pour gérer un projet complexe et le diviser en minitaches. Conçu pour travailler en groupe sur
+ des projets, accessible avec votre compte
+
Accéder au kanboard
+
+
+
+
+
+{% endblock %}
+
diff --git a/re2o/templates/re2o/sidebar.html b/re2o/templates/re2o/sidebar.html
new file mode 100644
index 00000000..2d6342fc
--- /dev/null
+++ b/re2o/templates/re2o/sidebar.html
@@ -0,0 +1,4 @@
+{% extends "base.html" %}
+
+{% block sidebar %}
+{% endblock %}
diff --git a/re2o/urls.py b/re2o/urls.py
index 01d86a88..00d07d52 100644
--- a/re2o/urls.py
+++ b/re2o/urls.py
@@ -16,7 +16,7 @@ from django.conf.urls import include, url
from django.contrib import admin
from django.contrib.auth import views as auth_views
-from logs.views import index
+from .views import index
urlpatterns = [
url(r'^$', index),
diff --git a/re2o/views.py b/re2o/views.py
new file mode 100644
index 00000000..17816b08
--- /dev/null
+++ b/re2o/views.py
@@ -0,0 +1,14 @@
+from django.shortcuts import render
+from django.shortcuts import render_to_response, get_object_or_404
+from django.core.context_processors import csrf
+from django.template import Context, RequestContext, loader
+from re2o.settings import services_urls
+
+def form(ctx, template, request):
+ c = ctx
+ c.update(csrf(request))
+ return render_to_response(template, c, context_instance=RequestContext(request))
+
+
+def index(request):
+ return form({'services_urls': services_urls}, 're2o/index.html', request)
diff --git a/static/logo/etherpad.png b/static/logo/etherpad.png
new file mode 100644
index 00000000..4dde5bf3
Binary files /dev/null and b/static/logo/etherpad.png differ
diff --git a/static/logo/gitlab.png b/static/logo/gitlab.png
new file mode 100644
index 00000000..b5040adc
Binary files /dev/null and b/static/logo/gitlab.png differ
diff --git a/static/logo/kanboard.png b/static/logo/kanboard.png
new file mode 100644
index 00000000..5c13c937
Binary files /dev/null and b/static/logo/kanboard.png differ
diff --git a/static/logo/zerobin.png b/static/logo/zerobin.png
new file mode 100644
index 00000000..becbe150
Binary files /dev/null and b/static/logo/zerobin.png differ