]> git.r.bdr.sh - rbdr/grita/blobdiff - views/index.haml
Fixes QR Codes.
[rbdr/grita] / views / index.haml
index 742418d2aa876eb77cba132c6491dc700ce75149..7801311e455345cc50ae1500d3c92d21e6fe188e 100644 (file)
@@ -1,8 +1,27 @@
 %form{:method => 'post', :action => '/'}
+       -unless @grito.nil?
+               -unless @grito.errors.empty?
+                       #errors
+                               -@grito.errors.each do |e|
+                                       %span= e
+                                       %br
+               -else
+                       #success
+                               Su texto ha sido guardado!
+                               %a{:href=>"/#{@grito.gethash}"} De click aquí para verlo.
        %h1 Título
-       %input{:type => 'text', :name => 'title', :class => 'title'}
+       -unless @grito.nil?
+               -unless @grito.errors.empty?
+                       %input.title{:type => 'text', :name => 'title', :Value => @grito.title}
+               -else
+                       %input.title{:type => 'text', :name => 'title'}
+       -else
+               %input.title{:type => 'text', :name => 'title'}
        %br
        %h1 Texto
-       %textarea{:name => 'text', :class => 'text', :cols => '100'}
+       %textarea.text{:name => 'text', :cols => '76', :rows => '20'}
+               -unless @grito.nil?
+                       -unless @grito.errors.empty?
+                               =@grito.text
        %br
-       %input{:type => 'submit', :value => 'Gritalo!'}
\ No newline at end of file
+       %input.submit{:type => 'submit', :value => 'Gritalo!'}
\ No newline at end of file