Show More
Commit Description:
[web] more use of utc time...
Commit Description:
[web] more use of utc time
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@248 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
app/views/announcements/new.html.erb
| 26 lines
| 410 B
| text/plain
| TextLexer
|
|
r97 | <h1>New announcement</h1> | ||
<%= error_messages_for :announcement %> | ||||
<% form_for(@announcement) do |f| %> | ||||
<p> | ||||
<b>Body</b><br /> | ||||
<%= f.text_area :body %> | ||||
</p> | ||||
<p> | ||||
<b>Author</b><br /> | ||||
<%= f.text_field :author %> | ||||
</p> | ||||
<p> | ||||
<b>Published</b><br /> | ||||
<%= f.check_box :published %> | ||||
</p> | ||||
<p> | ||||
<%= f.submit "Create" %> | ||||
</p> | ||||
<% end %> | ||||
<%= link_to 'Back', announcements_path %> | ||||