From f990c0ac064eb8fd955f7191aeeef12e02266013 Mon Sep 17 00:00:00 2001 From: Joerg Reichert Date: Sat, 31 Mar 2018 19:40:50 +0200 Subject: [PATCH] #1: initial version --- app/controllers/application_controller.rb | 4 +++ app/views/application/glossary.html.slim | 40 ++++++++++++++++++++++- app/views/layouts/application.html.slim | 1 + config/routes.rb | 1 + 4 files changed, 45 insertions(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 315c86f..b280d19 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -11,6 +11,10 @@ class ApplicationController < ActionController::Base !!current_user end + def glossary + render action: "glossary" + end + def impressum render action: "impressum" end diff --git a/app/views/application/glossary.html.slim b/app/views/application/glossary.html.slim index e66d827..e572a20 100644 --- a/app/views/application/glossary.html.slim +++ b/app/views/application/glossary.html.slim @@ -10,5 +10,43 @@ html .row .small-12.columns .clearfix - h1[id="title" class="left"] = 'Glossar' + h3#title = 'Glossar' + h5#process = 'Ablauf' + div = 'TODO' + h5#items = 'Elemente' + ul + li = 'Vorlage' + ul + li = 'Beschlussvorlage: Problemstellung mit Lösungsvorschlag, über den in der Ratsversammlung abgestimmt werden soll' + ul + li = 'Beispiel: https://ratsinfo.leipzig.de/bi/vo020.asp?VOLFDNR=1009094' + li = 'Antrag: konkreter Auftrag an die Verwaltung, über dessen Annahme in der Ratsversammlung abgestimmt werden soll' + ul + li = 'Beispiel: https://ratsinfo.leipzig.de/bi/vo020.asp?VOLFDNR=1007392' + li = 'Anfrage: Fragen einer Fraktion oder einzelner Stadträte an der Verwaltung, die entweder mündlich in der Ratssitzung oder schriftlich beantwortet wird' + ul + li = 'Einwohneranfrage: Fragen von Leipziger Bürger an der Verwaltung' + li = 'schriftliche Antwort zur Anfrage: die Reaktion auf die Anfrage zum Nachlesen' + li = 'Reaktionen' + ul + li = 'Verwaltungsstandpunkt' + ul + li = 'Zustimmung / Zustimmung mit Ergänzung' + li = 'Ablehnung / Ablehnung, da bereits Verwaltungshandeln' + li = 'Alternativvorschlag' + li = 'Sachstandsbericht' + li = 'Änderungsantrag' + li = 'Neufassung' + li = 'Informationsvorlage: Information aus der Stadtverwaltung zur allgemeinen Kenntnisnahme in den Gremien, bedarf selbst keiner Abstimmung' + li = 'Petition' + li = 'Wichtige Angelegenheit' + li = 'Vorlagenstruktur' + ul + li = 'Sachverhalt: Schilderung der aus Sicht des Antragsstellers bestehende Problemlage' + li = 'Beschlussvorschlag: Empfehlungen zu konkreten Maßnahmen zur Lösung der Problemlage aus Sicht des Antragstellers, die ergriffen werden sollen, wenn die Ratsversammlung dieser Vorlage zustimmt' + li = 'Beratungsfolge' + li = 'Status' + li = 'Gremium' + ul + li = 'Ratsversammlung' diff --git a/app/views/layouts/application.html.slim b/app/views/layouts/application.html.slim index ac26564..3e4cc2b 100644 --- a/app/views/layouts/application.html.slim +++ b/app/views/layouts/application.html.slim @@ -14,6 +14,7 @@ html h1[id="title" class="left"] = link_to 'Stadtratmonitor Leipzig', search_path div(class="right") div(class="left") = link_to 'Suche', search_path + div(class="left header_indent") = link_to 'Glossar', glossary_url div(class="right header_indent") = link_to 'Impressum', impressum_url div(class="clear") div(class="clear") diff --git a/config/routes.rb b/config/routes.rb index 8aa6ebe..70685ad 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,7 @@ Rails.application.routes.draw do root :to => 'search#index', as: :search post '/import' => 'import#new_papers_callback' + get '/glossary' => 'application#glossary', as: :glossary get '/impressum' => 'application#impressum', as: :impressum # Example of regular route: