Show More
Commit Description:
start working on e-mail registration...
Commit Description:
start working on e-mail registration
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@294 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
app/views/messages/show.html.haml
| 13 lines
| 415 B
| text/x-haml
| HamlLexer
|
|
r102 | %h3 Message | ||
.message | ||||
.stat | ||||
= "#{@message.sender.full_name} at #{@message.created_at}" | ||||
.body= simple_format(@message.body) | ||||
%h3 Your reply: | ||||
- form_for 'r_message', nil, :url => { :action => 'reply'} do |f| | ||||
= f.text_area :body, :rows => 5, :cols => 100 | ||||
= f.hidden_field :receiver_id, {:value => @message.sender_id } | ||||
= f.hidden_field :replying_message_id, {:value => @message.id } | ||||
= submit_tag "Post" | ||||