Show More
Commit Description:
fix access right control bugs
Commit Description:
fix access right control bugs
References:
File last commit:
Show/Diff file:
Action:
app/views/sites/edit.html.haml
| 24 lines
| 411 B
| text/x-haml
| HamlLexer
|
r580 | %h1 Editing site | |||
= error_messages_for :site | ||||
= form_for(@site) do |f| | ||||
%p | ||||
%b Name | ||||
%br/ | ||||
= f.text_field :name | ||||
%p | ||||
%b Password | ||||
%br/ | ||||
= f.text_field :password | ||||
%p | ||||
%b Started | ||||
%br/ | ||||
= f.check_box :started | ||||
%p | ||||
%b Start time | ||||
%br/ | ||||
= f.datetime_select :start_time, :include_blank => true | ||||
%p | ||||
= f.submit "Update" | ||||
= link_to 'Show', @site | ||||
| | ||||
= link_to 'Back', sites_path | ||||