show.rhtml
52 lines
| 2.2 KiB
| text/html+ruby
|
RhtmlLexer
|
r526 | <div class="contextual"> | ||
|
r752 | <%= link_to_if_authorized l(:label_message_new), | ||
{:controller => 'messages', :action => 'new', :board_id => @board}, | ||||
:class => 'icon icon-add', | ||||
:onclick => 'Element.show("add-message"); return false;' %> | ||||
|
r663 | <%= watcher_tag(@board, User.current) %> | ||
|
r526 | </div> | ||
|
r752 | <div id="add-message" style="display:none;"> | ||
<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%= l(:label_message_new) %></h2> | ||||
<% form_for :message, @message, :url => {:controller => 'messages', :action => 'new', :board_id => @board}, :html => {:multipart => true} do |f| %> | ||||
<%= render :partial => 'messages/form', :locals => {:f => f} %> | ||||
<p><%= submit_tag l(:button_create) %> | ||||
<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("add-message")' %></p> | ||||
<% end %> | ||||
</div> | ||||
|
r526 | <h2><%=h @board.name %></h2> | ||
|
r736 | <% if @topics.any? %> | ||
|
r526 | <table class="list"> | ||
<thead><tr> | ||||
<th><%= l(:field_subject) %></th> | ||||
<th><%= l(:field_author) %></th> | ||||
<%= sort_header_tag("#{Message.table_name}.created_on", :caption => l(:field_created_on)) %> | ||||
<th><%= l(:label_reply_plural) %></th> | ||||
<%= sort_header_tag("#{Message.table_name}.updated_on", :caption => l(:label_message_last)) %> | ||||
</tr></thead> | ||||
<tbody> | ||||
<% @topics.each do |topic| %> | ||||
<tr class="<%= cycle 'odd', 'even' %>"> | ||||
<td><%= link_to h(topic.subject), :controller => 'messages', :action => 'show', :board_id => @board, :id => topic %></td> | ||||
<td align="center"><%= link_to_user topic.author %></td> | ||||
<td align="center"><%= format_time(topic.created_on) %></td> | ||||
<td align="center"><%= topic.replies_count %></td> | ||||
<td> | ||||
<small> | ||||
<% if topic.last_reply %> | ||||
<%= topic.last_reply.author.name %>, <%= format_time(topic.last_reply.created_on) %><br /> | ||||
<%= link_to_message topic.last_reply %> | ||||
<% end %> | ||||
</small> | ||||
</td> | ||||
</tr> | ||||
<% end %> | ||||
</tbody> | ||||
</table> | ||||
<p><%= pagination_links_full @topic_pages %> | ||||
[ <%= @topic_pages.current.first_item %> - <%= @topic_pages.current.last_item %> / <%= @topic_count %> ]</p> | ||||
|
r736 | <% else %> | ||
<p class="nodata"><%= l(:label_no_data) %></p> | ||||
<% end %> | ||||