Show More
Commit Description:
add brython console for direct edit
Commit Description:
add brython console for direct edit
File last commit:
Show/Diff file:
Action:
app/views/messages/show.html.haml | 20 lines | 622 B | text/x-haml | HamlLexer |
jittat
[web] added message feature...
r102 %h3 Message
.message
.stat
= "#{@message.sender.full_name} at #{@message.created_at}"
.body= simple_format(@message.body)
%h3 Your reply:
update syntax of form_for to rails 3.2.8...
r344 = form_for 'r_message', :url => { :action => 'reply'} do |f|
jittat
[web] added message feature...
r102 = 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"
jittat
added message hiding for admin in msg console...
r173
%p
If you do not want to reply, but want to hide this message from
console, you can
= link_to "[hide]", :action => 'hide', :id => @message.id
this message. (This message will be marked as replied.)