34 lines
1.6 KiB
Plaintext
34 lines
1.6 KiB
Plaintext
<div class="dis">
|
|
<div class="msg_box" id='leave-message'>
|
|
<% reply_allow = JournalsForMessage.create_by_user? User.current %>
|
|
|
|
<h3><%= l(:label_user_response) %></h3>
|
|
|
|
<% if !User.current.logged?%>
|
|
<div style="font-size: 14px;margin:20px;">
|
|
<%= l(:label_user_login_tips) %>
|
|
<%= link_to l(:label_user_login_new), signin_path %>
|
|
<hr/>
|
|
</div>
|
|
<% else %>
|
|
<div style="width: 80%; margin-left:10%;">
|
|
<%= form_for('new_form', :method => :post,
|
|
:url => {:controller => 'words', :action => 'leave_course_message'}) do |f|%>
|
|
<%= f.text_area 'course_message',:id => "leave_meassge", :rows => 3, :cols => 65,
|
|
:placeholder => "#{l(:label_welcome_my_respond)}",
|
|
:style => "resize: none; width: 98%",
|
|
:class => 'noline',:maxlength => 250%>
|
|
<!--<%#= submit_tag l(:button_leave_meassge), :name => nil , :class => "enterprise" , :style => "display: block; float: right; margin-right: 1%; margin-top: 1px;"%>-->
|
|
<a href="#" onclick='$("#leave_meassge").parent().submit();' class="ButtonColor m3p10" style ="display: block; float: right; margin-right: 1%; margin-top: 1px;"> <%= l(:button_leave_meassge)%>
|
|
</a>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<div class="cl"></div>
|
|
</div>
|
|
|
|
<div id="history">
|
|
<%= render :partial => 'history',:locals => { :contest => @contest, :journals => @jour, :state => false} %>
|
|
</div>
|
|
<ul class="wlist"><%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%></ul>
|
|
</div> |