114 lines
4.2 KiB
Plaintext
114 lines
4.2 KiB
Plaintext
<script type="text/javascript">
|
|
function submitCoursesBoard()
|
|
{
|
|
if(regexSubject()&®exContent()){$("#message-form").submit();}
|
|
}
|
|
</script>
|
|
<div id="add-message" class="add_frame" style="display:none;">
|
|
<% if User.current.logged? %>
|
|
<h3>
|
|
<%= link_to h(@board.name), course_board_path(@course, @board) %> »
|
|
<%= l(:label_message_new) %>
|
|
</h3>
|
|
<div class="add_frame_header" >
|
|
<%= l(:label_message_new) %>
|
|
</div>
|
|
<%= form_for @message, :url => new_board_message_path(@board), :html => {:multipart => false, :id => 'message-form'} do |f| %>
|
|
<%= render :partial => 'messages/form', :locals => {:f => f} %>
|
|
<p>
|
|
<!--<input type="button" onclick="submitCoursesBoard();" class = "ButtonColor m3p10 h30" value="<%#= l(:button_submit)%>">-->
|
|
<a href="#" onclick="submitCoursesBoard();"class="ButtonColor m3p10"><%= l(:button_submit)%></a>
|
|
<%= link_to l(:button_cancel), "#", :onclick => '$("#add-message").hide(); return false;' ,:class => 'ButtonColor m3p10' %>
|
|
</p>
|
|
<% end %>
|
|
<div id="preview" class="wiki"></div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<!--display the board-->
|
|
<div class="borad-title">
|
|
<%=h @board.name %>
|
|
</div>
|
|
|
|
<% if !User.current.logged?%>
|
|
<div style="font-size: 14px;margin:20px;">
|
|
<%= l(:label_user_login_course_board) %>
|
|
<%= link_to l(:label_user_login_new), signin_path %>
|
|
<hr/>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="borad-setitle">
|
|
<span class="borad-topic-count">
|
|
共有
|
|
<%=link_to @topic_count,:controller => 'boards',:action => 'index' %>
|
|
个贴子
|
|
</span>
|
|
<span>
|
|
<%= link_to l(:label_message_new),
|
|
new_board_message_path(@board),
|
|
:class => 'icon icon-add',
|
|
:onclick => 'showAndScrollTo("add-message", "message_subject"); return false;' if User.current.logged? %>
|
|
</span>
|
|
</div>
|
|
<div style="padding-top: 10px">
|
|
<% if @topics.any? %>
|
|
<% @topics.each do |topic| %>
|
|
<table class="content-text-list">
|
|
<tr>
|
|
<td colspan="2" valign="top" width="50" ><%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) %></td>
|
|
<td>
|
|
<table width="640px" border="0">
|
|
<tr>
|
|
<td valign="top" width="500px" class=" <%= topic.sticky? ? 'sticky' : '' %>
|
|
<%= topic.locked? ? 'locked' : '' %>">
|
|
<%= link_to h(topic.subject.truncate(40,ommision:'...')), board_message_path(@board, topic),title: topic.subject.to_s %>
|
|
</td>
|
|
<td align="right" rowspan="3">
|
|
<table class="borad-count">
|
|
<tr>
|
|
<td align="center" class="borad-count-digit">
|
|
<%=link_to (topic.replies_count), board_message_path(@board, topic) %>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
回答
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" colspan="2" >
|
|
<span class="font_lighter">
|
|
<%= authoring topic.created_on, topic.author %>
|
|
<br />
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<% end %>
|
|
<div class="pagination">
|
|
<%= pagination_links_full @topic_pages, @topic_count %>
|
|
</div>
|
|
<% else %>
|
|
<p class="nodata">
|
|
<%= l(:label_no_data) %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% other_formats_links do |f| %>
|
|
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
|
<% end %>
|
|
|
|
<% html_title @board.name %>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@course}: #{@board}") %>
|
|
<% end %>
|