Merge pull request #354 from AyuntamientoMadrid/improve_design
Improve design
This commit is contained in:
@@ -276,7 +276,7 @@
|
|||||||
.panel {
|
.panel {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: rem-calc(2);
|
||||||
min-height: rem-calc(192);
|
min-height: rem-calc(192);
|
||||||
padding: 0 rem-calc(12) rem-calc(2) rem-calc(12);
|
padding: 0 rem-calc(12) rem-calc(2) rem-calc(12);
|
||||||
|
|
||||||
@@ -418,6 +418,10 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.edit-debate {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.debate-info {
|
.debate-info {
|
||||||
clear: both;
|
clear: both;
|
||||||
color: $text-medium;
|
color: $text-medium;
|
||||||
|
|||||||
@@ -66,6 +66,10 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: $body;
|
background: $body;
|
||||||
font-family: $font-family-sans-serif;
|
font-family: $font-family-sans-serif;
|
||||||
@@ -228,6 +232,22 @@ h6 {
|
|||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
min-height: 100%;
|
||||||
|
margin: 0 auto rem-calc(-288);
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer, .push {
|
||||||
|
clear: both;
|
||||||
|
min-height: rem-calc(288);
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
background: $brand;
|
||||||
|
}
|
||||||
|
|
||||||
// 04. Header
|
// 04. Header
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
@@ -460,7 +480,6 @@ header {
|
|||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: none;
|
background: none;
|
||||||
// color: $link-hover;
|
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
transition: text-decoration 275ms;
|
transition: text-decoration 275ms;
|
||||||
@@ -499,29 +518,45 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.subnavigation {
|
.subnavigation {
|
||||||
background: rgba(255,255,255,.95);
|
background: white;
|
||||||
clear: both;
|
clear: both;
|
||||||
text-transform: lowercase;
|
|
||||||
|
|
||||||
@media (min-width: $small-breakpoint) {
|
@media (min-width: $small-breakpoint) {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $link;
|
color: $text;
|
||||||
display: inline-block;
|
display: block;
|
||||||
font-size: rem-calc(14);
|
font-size: rem-calc(14);
|
||||||
|
font-weight: bold;
|
||||||
min-width: rem-calc(192);
|
min-width: rem-calc(192);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
text-align: left;
|
||||||
|
margin-left: rem-calc(12);
|
||||||
|
|
||||||
|
@media (min-width: $small-breakpoint) {
|
||||||
|
display: inline-block;
|
||||||
|
line-height: $line-height*2;
|
||||||
|
margin-left: 0;
|
||||||
|
min-width: rem-calc(192);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $text;
|
color: $link;
|
||||||
text-decoration: underline;
|
|
||||||
|
@media (min-width: $small-breakpoint) {
|
||||||
|
background: rgba(0,119,185,.25);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
color: $text;
|
color: $link;
|
||||||
font-weight: bold;
|
|
||||||
|
@media (min-width: $small-breakpoint) {
|
||||||
|
background: $brand;
|
||||||
|
color: white;
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
bottom: -16px;
|
bottom: -16px;
|
||||||
@@ -531,19 +566,19 @@ header {
|
|||||||
height: 0;
|
height: 0;
|
||||||
width: 0;
|
width: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-top-color: rgba(255,255,255,.95);
|
border-top-color: $brand;
|
||||||
border-width: 8px;
|
border-width: 8px;
|
||||||
margin-left: -8px;
|
margin-left: -8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 05. Footer
|
// 05. Footer
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
background: $brand;
|
|
||||||
color: white;
|
color: white;
|
||||||
padding: rem-calc(24) 0 rem-calc(48) 0;
|
padding: rem-calc(24) 0 rem-calc(48) 0;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
@@ -608,21 +643,20 @@ footer {
|
|||||||
.tags {
|
.tags {
|
||||||
|
|
||||||
a {
|
a {
|
||||||
background: $background;
|
background: #f2f2f2;
|
||||||
border: 1px solid $border;
|
border-radius: rem-calc(30);
|
||||||
border-radius: 3px;
|
color: #4d4d4d;
|
||||||
color: $text-medium;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: rem-calc(13);
|
font-size: rem-calc(13);
|
||||||
|
font-weight: bold;
|
||||||
line-height: rem-calc(22);
|
line-height: rem-calc(22);
|
||||||
margin-bottom: rem-calc(8);
|
margin-bottom: rem-calc(8);
|
||||||
padding: 0 rem-calc(6);
|
padding: 0 rem-calc(8);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $link;
|
color: $link;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: #E5F1F8;
|
background: #E5F1F8;
|
||||||
border: 1px solid $brand;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -742,6 +776,10 @@ form {
|
|||||||
background: $input-bg;
|
background: $input-bg;
|
||||||
height: rem-calc(48);
|
height: rem-calc(48);
|
||||||
margin-bottom: rem-calc(16);
|
margin-bottom: rem-calc(16);
|
||||||
|
|
||||||
|
&.error {
|
||||||
|
margin-bottom: rem-calc(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"] + label,
|
input[type="checkbox"] + label,
|
||||||
@@ -834,6 +872,22 @@ form {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.error, small.error {
|
||||||
|
background: $alert-bg;
|
||||||
|
color: $alert-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error small.error {
|
||||||
|
background: $alert-bg;
|
||||||
|
color: $alert-color;
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 rem-calc(6);
|
||||||
|
}
|
||||||
|
|
||||||
|
label.error, label.error a {
|
||||||
|
color: $alert-color;
|
||||||
|
}
|
||||||
|
|
||||||
// 10. User account
|
// 10. User account
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
@@ -1148,7 +1202,7 @@ table {
|
|||||||
|
|
||||||
.page {
|
.page {
|
||||||
background: white;
|
background: white;
|
||||||
min-height: rem-calc(600);
|
padding-bottom: rem-calc(48);
|
||||||
|
|
||||||
.menu {
|
.menu {
|
||||||
margin-top: rem-calc(24);
|
margin-top: rem-calc(24);
|
||||||
@@ -1282,8 +1336,8 @@ table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.verification-step {
|
.verification-step {
|
||||||
font-size: rem-calc(11);
|
font-size: rem-calc(12);
|
||||||
padding-top: rem-calc(10);
|
padding-top: rem-calc(6);
|
||||||
|
|
||||||
@media (min-width: $small-breakpoint) {
|
@media (min-width: $small-breakpoint) {
|
||||||
line-height: $line-height;
|
line-height: $line-height;
|
||||||
|
|||||||
@@ -44,13 +44,17 @@
|
|||||||
<h2><%= t("account.show.notifications")%></h2>
|
<h2><%= t("account.show.notifications")%></h2>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
<%= f.label :email_on_debate_comment do %>
|
||||||
<%= f.check_box :email_on_debate_comment, label: false %>
|
<%= f.check_box :email_on_debate_comment, label: false %>
|
||||||
<span class="checkbox"><%= t("account.show.email_on_debate_comment_label") %></span>
|
<span class="checkbox"><%= t("account.show.email_on_debate_comment_label") %></span>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
<%= f.label :email_on_comment_reply do %>
|
||||||
<%= f.check_box :email_on_comment_reply, label: false %>
|
<%= f.check_box :email_on_comment_reply, label: false %>
|
||||||
<span class="checkbox"><%= t("account.show.email_on_comment_reply_label") %></span>
|
<span class="checkbox"><%= t("account.show.email_on_comment_reply_label") %></span>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<section role="main">
|
<section role="main">
|
||||||
|
|
||||||
<div class="filters row">
|
<div class="filters row">
|
||||||
<div class="small-9 column">
|
<div class="small-12 medium-9 column">
|
||||||
|
|
||||||
<% if @tag_filter %>
|
<% if @tag_filter %>
|
||||||
<div class="inline-block small-8" >
|
<div class="inline-block small-12 medium-8" >
|
||||||
<h2>
|
<h2>
|
||||||
<%= t("debates.index.filter_topic",
|
<%= t("debates.index.filter_topic",
|
||||||
count: @debates.size,
|
count: @debates.size,
|
||||||
@@ -14,13 +14,15 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="inline-block <%= 'right' if @tag_filter %>">
|
<div class="inline-block <%= 'right' if @tag_filter %>">
|
||||||
<h6 class="inline-block">
|
|
||||||
<% if @tag_filter %>
|
<% if @tag_filter %>
|
||||||
|
<h6 class="inline-block">
|
||||||
<%= t("debates.index.select_order") %>
|
<%= t("debates.index.select_order") %>
|
||||||
<% else %>
|
|
||||||
<%= t("debates.index.select_order_long") %>
|
|
||||||
<% end %>
|
|
||||||
</h6>
|
</h6>
|
||||||
|
<% else %>
|
||||||
|
<h2 class="inline-block">
|
||||||
|
<%= t("debates.index.select_order_long") %>
|
||||||
|
</h2>
|
||||||
|
<% end %>
|
||||||
<form class="inline-block">
|
<form class="inline-block">
|
||||||
<select class="js-location-changer" name="order-selector">
|
<select class="js-location-changer" name="order-selector">
|
||||||
<% @valid_orders.each do |order| %>
|
<% @valid_orders.each do |order| %>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<i class="icon-angle-left left"></i> <%= link_to t("debates.show.back_link"), debates_path, class: 'left back' %>
|
<i class="icon-angle-left left"></i> <%= link_to t("debates.show.back_link"), debates_path, class: 'left back' %>
|
||||||
|
|
||||||
<% if current_user && @debate.editable_by?(current_user) %>
|
<% if current_user && @debate.editable_by?(current_user) %>
|
||||||
<%= link_to edit_debate_path(@debate), :class => 'right' do %>
|
<%= link_to edit_debate_path(@debate), :class => 'edit-debate button success tiny radius right' do %>
|
||||||
<i class="icon-edit"></i>
|
<i class="icon-edit"></i>
|
||||||
<%= t("debates.show.edit_debate_link") %>
|
<%= t("debates.show.edit_debate_link") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -29,10 +29,8 @@
|
|||||||
|
|
||||||
<section class="subnavigation row text-center">
|
<section class="subnavigation row text-center">
|
||||||
<%#= link_to t("layouts.header.welcome"), root_path %>
|
<%#= link_to t("layouts.header.welcome"), root_path %>
|
||||||
<%= link_to t("layouts.header.debates"), debates_path, class: ("active" if current_page?(controller: "/debates")) %>
|
|
||||||
<%#= link_to t("layouts.header.initiatives"), "#" %>
|
<%#= link_to t("layouts.header.initiatives"), "#" %>
|
||||||
<%= link_to t("layouts.header.more_information"), "/more_information", class: ("active" if current_page?("/more_information")) %>
|
<%= link_to t("layouts.header.debates"), debates_path, class: ("active" if current_page?(controller: "/debates")) %><%= link_to t("layouts.header.more_information"), "/more_information", class: ("active" if current_page?("/more_information")) %><%= link_to t("layouts.header.external_link_blog"), t("layouts.header.external_link_blog_url"), target: "_blank" %>
|
||||||
<%= link_to t("layouts.header.external_link_blog"), t("layouts.header.external_link_blog_url"), target: "_blank" %>
|
|
||||||
</section>
|
</section>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
@@ -65,7 +63,7 @@
|
|||||||
|
|
||||||
<%= link_to "Ir al Portal de Transparencia existente anteriormente", t("layouts.header.external_link_transparency_url"), target: "_blank", class: "button radius" %>
|
<%= link_to "Ir al Portal de Transparencia existente anteriormente", t("layouts.header.external_link_transparency_url"), target: "_blank", class: "button radius" %>
|
||||||
|
|
||||||
<p>Mientras acabamos el nuevo portal, te invitamos a visitar el <a href="http://diario.madrid.es/participa/" target="_blank">blog del Área de Participación Ciudadana, Transparencia y Gobierno Abierto</a> para conocer nuestros avances y novedades; o la <a href="/">sección de Participación Ciudadana</a> donde poder decidir qué ciudad es la que quieres.</p>
|
<p>Mientras acabamos el nuevo portal, te invitamos a visitar el <a href="http://diario.madrid.es/" target="_blank">blog del Área de Participación Ciudadana, Transparencia y Gobierno Abierto</a> para conocer nuestros avances y novedades; o la <a href="/">sección de Participación Ciudadana</a> donde poder decidir qué ciudad es la que quieres.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -81,7 +79,7 @@
|
|||||||
|
|
||||||
<%= link_to "Ir al Portal de Datos Abiertos existente anteriormente", t("layouts.header.external_link_opendata_url"), target: "_blank", class: "button radius" %>
|
<%= link_to "Ir al Portal de Datos Abiertos existente anteriormente", t("layouts.header.external_link_opendata_url"), target: "_blank", class: "button radius" %>
|
||||||
|
|
||||||
<p>Mientras acabamos el nuevo portal, te invitamos a visitar el <a href="http://diario.madrid.es/participa/" target="_blank">blog del Área de Participación Ciudadana, Transparencia y Gobierno Abierto</a> para conocer nuestros avances y novedades; o la <a href="/">sección de Participación Ciudadana</a> donde poder decidir qué ciudad es la que quieres.</p>
|
<p>Mientras acabamos el nuevo portal, te invitamos a visitar el <a href="http://diario.madrid.es/" target="_blank">blog del Área de Participación Ciudadana, Transparencia y Gobierno Abierto</a> para conocer nuestros avances y novedades; o la <a href="/">sección de Participación Ciudadana</a> donde poder decidir qué ciudad es la que quieres.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -12,19 +12,30 @@
|
|||||||
<%= favicon_link_tag "favicon.ico" %>
|
<%= favicon_link_tag "favicon.ico" %>
|
||||||
</head>
|
</head>
|
||||||
<body class="<%= "bg-white" if current_page?(root_path) %>">
|
<body class="<%= "bg-white" if current_page?(root_path) %>">
|
||||||
|
<div class="wrapper">
|
||||||
<%= render 'layouts/header' %>
|
<%= render 'layouts/header' %>
|
||||||
|
|
||||||
<% if notice %>
|
<% if notice %>
|
||||||
<p class="alert-box success alert-layout"><%= notice %></p>
|
<div class="alert-box success alert-layout">
|
||||||
|
<div class="row">
|
||||||
|
<%= notice %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% if alert %>
|
<% if alert %>
|
||||||
<p class="alert-box alert alert-layout"><%= alert %></p>
|
<div class="alert-box alert alert-layout">
|
||||||
|
<div class="row">
|
||||||
|
<%= alert %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
|
<div class="push"></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
<%= render 'layouts/footer' %>
|
<%= render 'layouts/footer' %>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -15,11 +15,19 @@
|
|||||||
<body class="auth-page">
|
<body class="auth-page">
|
||||||
|
|
||||||
<% if notice %>
|
<% if notice %>
|
||||||
<p class="alert-box success alert-layout"><%= notice %></p>
|
<div class="alert-box success alert-layout">
|
||||||
|
<div class="row">
|
||||||
|
<%= notice %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% if alert %>
|
<% if alert %>
|
||||||
<p class="alert-box alert alert-layout"><%= alert %></p>
|
<div class="alert-box alert alert-layout">
|
||||||
|
<div class="row">
|
||||||
|
<%= alert %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div class="row-full page">
|
<div class="page row-full">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="small-12 column">
|
<div class="text small-12 column">
|
||||||
<%= simple_format t('pages.census_terms') %>
|
<%= simple_format t('pages.census_terms') %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
<p>El nuevo gobierno del Ayuntamiento de Madrid ha creado un nuevo área de gobierno: Participación Ciudadana, Transparencia y Gobierno Abierto. El objetivo de este área es claro: que los madrileños puedan decidir directamente la política de la ciudad, y que todo lo que ocurra en el Ayuntamiento, hasta el último rincón, esté a la vista de todos.</p>
|
<p>El nuevo gobierno del Ayuntamiento de Madrid ha creado un nuevo área de gobierno: Participación Ciudadana, Transparencia y Gobierno Abierto. El objetivo de este área es claro: que los madrileños puedan decidir directamente la política de la ciudad, y que todo lo que ocurra en el Ayuntamiento, hasta el último rincón, esté a la vista de todos.</p>
|
||||||
|
|
||||||
<p>Iremos publicando nuestros avances, las novedades y cualquier otra cosa que queramos compartir con vosotros en <a href="http://diario.madrid.es/participa/" target="_blank">nuestro blog</a>.</p>
|
<p>Iremos publicando nuestros avances, las novedades y cualquier otra cosa que queramos compartir con vosotros en <a href="http://diario.madrid.es/" target="_blank">nuestro blog</a>.</p>
|
||||||
|
|
||||||
<p>Y podéis escribirnos para cualquier cosa a la dirección <a href="mailto:ag.gobiernoabierto@madrid.es">ag.gobiernoabierto@madrid.es</a></p>
|
<p>Y podéis escribirnos para cualquier cosa a la dirección <a href="mailto:ag.gobiernoabierto@madrid.es">ag.gobiernoabierto@madrid.es</a></p>
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,12 @@
|
|||||||
|
|
||||||
<div class="small-12 medium-12 column">
|
<div class="small-12 medium-12 column">
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.letter.edit.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.letter.edit.title") %></h1>
|
||||||
|
|
||||||
<div class="small-12 medium-6">
|
<div class="small-12 medium-6">
|
||||||
<%= form_for @letter, as: "letter", url: letter_path, method: :put do |f| %>
|
<%= form_for @letter, as: "letter", url: letter_path, method: :put do |f| %>
|
||||||
|
|||||||
@@ -19,7 +19,12 @@
|
|||||||
|
|
||||||
<div class="small-12 medium-12 column">
|
<div class="small-12 medium-12 column">
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.letter.new.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.letter.new.title") %></h1>
|
||||||
|
|
||||||
<%= t("verification.letter.new.explanation_html") %>
|
<%= t("verification.letter.new.explanation_html") %>
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,12 @@
|
|||||||
<span class="meter" style="width: 33%"></span>
|
<span class="meter" style="width: 33%"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.residence.new.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.residence.new.title") %></h1>
|
||||||
|
|
||||||
<%= form_for @residence, as: "residence", url: residence_path do |f| %>
|
<%= form_for @residence, as: "residence", url: residence_path do |f| %>
|
||||||
<%= render "errors" %>
|
<%= render "errors" %>
|
||||||
@@ -47,8 +52,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="small-12">
|
<div class="small-12">
|
||||||
<%= f.check_box :terms_of_service, label: false %>
|
|
||||||
<%= f.label :terms_of_service do %>
|
<%= f.label :terms_of_service do %>
|
||||||
|
<%= f.check_box :terms_of_service, label: false %>
|
||||||
<%= t("verification.residence.new.accept_terms_text",
|
<%= t("verification.residence.new.accept_terms_text",
|
||||||
terms_url: link_to(t("verification.residence.new.terms"), "/census_terms",
|
terms_url: link_to(t("verification.residence.new.terms"), "/census_terms",
|
||||||
target: "_blank")).html_safe
|
target: "_blank")).html_safe
|
||||||
|
|||||||
@@ -17,7 +17,12 @@
|
|||||||
<span class="meter" style="width: 66%"></span>
|
<span class="meter" style="width: 66%"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.sms.edit.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.sms.edit.title") %></h1>
|
||||||
|
|
||||||
<%= form_for @sms, as: "sms", url: sms_path, method: :put do |f| %>
|
<%= form_for @sms, as: "sms", url: sms_path, method: :put do |f| %>
|
||||||
<% if @error %>
|
<% if @error %>
|
||||||
|
|||||||
@@ -17,7 +17,12 @@
|
|||||||
<span class="meter" style="width: 66%"></span>
|
<span class="meter" style="width: 66%"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.sms.new.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.sms.new.title") %></h1>
|
||||||
|
|
||||||
<%= form_for @sms, as: "sms", url: sms_path do |f| %>
|
<%= form_for @sms, as: "sms", url: sms_path do |f| %>
|
||||||
<%= render "shared/errors", resource: @sms %>
|
<%= render "shared/errors", resource: @sms %>
|
||||||
|
|||||||
@@ -1,7 +1,12 @@
|
|||||||
<div class="verification account row">
|
<div class="verification account row">
|
||||||
<div class="small-12 column">
|
<div class="small-12 column">
|
||||||
|
|
||||||
<h1 class="inline-block"><%= t("verification.verified_user.show.title") %></h1>
|
<%= link_to account_path, class: "left back clear" do %>
|
||||||
|
<i class="icon-angle-left left"></i>
|
||||||
|
<%= t("verification.back") %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<h1><%= t("verification.verified_user.show.title") %></h1>
|
||||||
|
|
||||||
<p><%= t("verification.verified_user.show.explanation") %></p>
|
<p><%= t("verification.verified_user.show.explanation") %></p>
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ en:
|
|||||||
external_link_opendata: Open data
|
external_link_opendata: Open data
|
||||||
external_link_opendata_url: "http://datos.madrid.es"
|
external_link_opendata_url: "http://datos.madrid.es"
|
||||||
external_link_blog: Blog
|
external_link_blog: Blog
|
||||||
external_link_blog_url: "http://diario.madrid.es/participa/"
|
external_link_blog_url: "http://diario.madrid.es/"
|
||||||
open_gov: "%{open} government"
|
open_gov: "%{open} government"
|
||||||
open: "Open"
|
open: "Open"
|
||||||
participation: Participation
|
participation: Participation
|
||||||
@@ -56,7 +56,7 @@ en:
|
|||||||
error: error
|
error: error
|
||||||
errors: errors
|
errors: errors
|
||||||
not_saved: "prohibited this %{resource} from being saved:"
|
not_saved: "prohibited this %{resource} from being saved:"
|
||||||
accept_terms: I accept the privacy policy and the legal terms
|
accept_terms: "I accept the Privacy policy and the Terms of use"
|
||||||
user: account
|
user: account
|
||||||
debate: debate
|
debate: debate
|
||||||
verification::sms: phone
|
verification::sms: phone
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ es:
|
|||||||
external_link_opendata: Datos abiertos
|
external_link_opendata: Datos abiertos
|
||||||
external_link_opendata_url: "http://datos.madrid.es"
|
external_link_opendata_url: "http://datos.madrid.es"
|
||||||
external_link_blog: Blog
|
external_link_blog: Blog
|
||||||
external_link_blog_url: "http://diario.madrid.es/participa/"
|
external_link_blog_url: "http://diario.madrid.es/"
|
||||||
open_gov: "Gobierno %{open}"
|
open_gov: "Gobierno %{open}"
|
||||||
open: "abierto"
|
open: "abierto"
|
||||||
participation: Participación
|
participation: Participación
|
||||||
@@ -56,7 +56,7 @@ es:
|
|||||||
error: error
|
error: error
|
||||||
errors: errores
|
errors: errores
|
||||||
not_saved: "impidieron guardar %{resource}:"
|
not_saved: "impidieron guardar %{resource}:"
|
||||||
accept_terms: Acepto la política de privacidad y el aviso legal
|
accept_terms: "Acepto la Política de privacidad y las Condiciones de uso"
|
||||||
user: la cuenta
|
user: la cuenta
|
||||||
debate: el debate
|
debate: el debate
|
||||||
verification::sms: el teléfono
|
verification::sms: el teléfono
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
en:
|
en:
|
||||||
verification:
|
verification:
|
||||||
|
back: "Back to my account"
|
||||||
step_1: "1. Residence"
|
step_1: "1. Residence"
|
||||||
step_2: "2. Confirmation code"
|
step_2: "2. Confirmation code"
|
||||||
step_3: "3. Final verification"
|
step_3: "3. Final verification"
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
es:
|
es:
|
||||||
verification:
|
verification:
|
||||||
|
back: "Volver a mi cuenta"
|
||||||
step_1: "1. Residencia"
|
step_1: "1. Residencia"
|
||||||
step_2: "2. Código de confirmación"
|
step_2: "2. Código de confirmación"
|
||||||
step_3: "3. Verificación final"
|
step_3: "3. Verificación final"
|
||||||
|
|||||||
Reference in New Issue
Block a user