Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
adrian
/
kiosks
Observar
1
Favorito
0
Fork
0
Código
Issues
4
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Suppress word wrap
main
Adrian Short
6 anos atrás
pai
c2f8851d74
commit
2c506d8b58
5 arquivos alterados
com
8 adições
e
7 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-1
lib/helpers.rb
+2
-0
public/style.css
+2
-2
views/decisions.haml
+1
-1
views/index.haml
+2
-3
views/new-applications.haml
+ 1
- 1
lib/helpers.rb
Ver arquivo
@@ -1,6 +1,6 @@
def short_date(s)
return if s.nil?
Date.parse(s).strftime("%e %b %Y")
.gsub(' ', ' ')
Date.parse(s).strftime("%e %b %Y")
end
def cleanup(s)
+ 2
- 0
public/style.css
Ver arquivo
@@ -16,6 +16,8 @@ body
margin: 25px 0;
}
.nowrap { white-space: nowrap; }
p
{
font-size: 110%;
+ 2
- 2
views/decisions.haml
Ver arquivo
@@ -10,13 +10,13 @@
%tbody
- apps.each do |app|
%tr
%td
%td
.nowrap
%a{ href: authority_url(app['authority_name']) }
= app['authority_name']
%td
%a{ href: app['info_url']}
= app['council_reference']
%td= short_date(app['date_decision'])
%td
.nowrap
= short_date(app['date_decision'])
%td= app['address']
%td= app['decision']
+ 1
- 1
views/index.haml
Ver arquivo
@@ -19,7 +19,7 @@
%tbody
- summary.each do |row|
%tr
%td
%td
.nowrap
%a{ href: authority_url(row['authority_name']) }
= row['authority_name']
%td= row['status']
+ 2
- 3
views/new-applications.haml
Ver arquivo
@@ -9,12 +9,11 @@
%tbody
- apps.each do |app|
%tr
%td
%td
.nowrap
%a{ href: authority_url(app['authority_name']) }
= app['authority_name']
%td
%a{ href: app['info_url']}
= app['council_reference']
%td= short_date(app['date_received'])
%td
.nowrap
= short_date(app['date_received'])
%td= app['address']
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar