]>
Commit | Line | Data |
---|---|---|
5573b3c2 | 1 | %form{:method => 'post', :action => '/'} |
0e0a67f4 BB |
2 | -unless @grito.nil? |
3 | -unless @grito.errors.empty? | |
4 | #errors | |
5 | -@grito.errors.each do |e| | |
6 | %span= e | |
7 | %br | |
8 | -else | |
9 | #success | |
10 | Su texto ha sido guardado! | |
11 | %a{:href=>"/#{@grito.gethash}"} De click aquí para verlo. | |
5573b3c2 | 12 | %h1 Título |
b7be4f63 BB |
13 | -unless @grito.nil? |
14 | -unless @grito.errors.empty? | |
15 | %input.title{:type => 'text', :name => 'title', :Value => @grito.title} | |
16 | -else | |
17 | %input.title{:type => 'text', :name => 'title'} | |
18 | -else | |
19 | %input.title{:type => 'text', :name => 'title'} | |
5573b3c2 BB |
20 | %br |
21 | %h1 Texto | |
0e0a67f4 | 22 | %textarea.text{:name => 'text', :cols => '76', :rows => '20'} |
b7be4f63 BB |
23 | -unless @grito.nil? |
24 | -unless @grito.errors.empty? | |
25 | =@grito.text | |
5573b3c2 | 26 | %br |
0e0a67f4 | 27 | %input.submit{:type => 'submit', :value => 'Gritalo!'} |