Description:
convert to haml
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r668:30ade25a1b97 - - 8 files changed: 76 inserted, 95 deleted
@@ -0,0 +1,20 | |||
|
1 | + %h1 Editing contest | |
|
2 | + = form_for(@contest) do |f| | |
|
3 | + = f.error_messages | |
|
4 | + %table | |
|
5 | + %tr | |
|
6 | + %td= f.label :name | |
|
7 | + %td= f.text_field :name | |
|
8 | + %tr | |
|
9 | + %td= f.label :title | |
|
10 | + %td= f.text_field :title | |
|
11 | + %tr | |
|
12 | + %td | |
|
13 | + %td | |
|
14 | + = f.check_box :enabled | |
|
15 | + = f.label :enabled | |
|
16 | + %p | |
|
17 | + = f.submit 'Update' | |
|
18 | + = link_to 'Show', @contest | |
|
19 | + | | |
|
20 | + = link_to 'Back', contests_path |
@@ -0,0 +1,27 | |||
|
1 | + %h1 Listing contests | |
|
2 | + .infobox | |
|
3 | + %b Go back to: | |
|
4 | + [#{link_to 'contest management', :controller => 'contest_management', :action => 'index'}] | |
|
5 | + %p= link_to 'New contest', new_contest_path, class: 'btn btn-success' | |
|
6 | + %table.table.table-striped | |
|
7 | + %tr | |
|
8 | + %th Name | |
|
9 | + %th Title | |
|
10 | + %th Enabled | |
|
11 | + %th | |
|
12 | + %th | |
|
13 | + %th | |
|
14 | + | |
|
15 | + - @contests.each do |contest| | |
|
16 | + - @contest = contest | |
|
17 | + %tr | |
|
18 | + -#%td= in_place_editor_field :contest, :name, {}, :rows => 1 | |
|
19 | + -#%td= in_place_editor_field :contest, :title, {}, :rows => 1 | |
|
20 | + -#%td= in_place_editor_field :contest, :enabled, {}, :rows => 1 | |
|
21 | + %td= best_in_place @contest, :name | |
|
22 | + %td= best_in_place @contest, :title | |
|
23 | + %td= best_in_place @contest, :enabled | |
|
24 | + %td= link_to 'Show', contest | |
|
25 | + %td= link_to 'Edit', edit_contest_path(contest) | |
|
26 | + %td= link_to 'Destroy', contest, :confirm => 'Are you sure?', :method => :delete | |
|
27 | + %br/ |
@@ -0,0 +1,18 | |||
|
1 | + %h1 New contest | |
|
2 | + = form_for(@contest) do |f| | |
|
3 | + = f.error_messages | |
|
4 | + %p | |
|
5 | + = f.label :name | |
|
6 | + %br/ | |
|
7 | + = f.text_field :name | |
|
8 | + %p | |
|
9 | + = f.label :title | |
|
10 | + %br/ | |
|
11 | + = f.text_field :title | |
|
12 | + %p | |
|
13 | + = f.label :enabled | |
|
14 | + %br/ | |
|
15 | + = f.check_box :enabled | |
|
16 | + %p | |
|
17 | + = f.submit 'Create' | |
|
18 | + = link_to 'Back', contests_path |
@@ -0,0 +1,11 | |||
|
1 | + %h1 | |
|
2 | + Contest: #{h @contest.title} | |
|
3 | + .infobox | |
|
4 | + %b Go back to: | |
|
5 | + [#{link_to 'contest management', :controller => 'contest_management', :action => 'index'}] | |
|
6 | + %p | |
|
7 | + %b Enabled: | |
|
8 | + = h @contest.enabled | |
|
9 | + = link_to 'Edit', edit_contest_path(@contest) | |
|
10 | + | | |
|
11 | + = link_to 'Back', contests_path |
deleted file |
deleted file |
deleted file |
deleted file |
You need to be logged in to leave comments.
Login now