list_news.rhtml
33 lines
| 1.4 KiB
| text/html+ruby
|
RhtmlLexer
|
r90 | <div class="contextual"> | ||
|
r739 | <%= link_to_if_authorized l(:label_news_new), | ||
{:controller => 'projects', :action => 'add_news', :id => @project}, | ||||
:class => 'icon icon-add', | ||||
:onclick => 'Element.show("add-news"); return false;' %> | ||||
</div> | ||||
<div id="add-news" style="display:none;"> | ||||
<h2><%=l(:label_news_new)%></h2> | ||||
<% labelled_tabular_form_for :news, @news, :url => { :action => "add_news", :id => @project } do |f| %> | ||||
<%= render :partial => 'news/form', :locals => { :f => f } %> | ||||
<%= submit_tag l(:button_create) %> | ||||
<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("add-news")' %> | ||||
<% end %> | ||||
|
r90 | </div> | ||
|
r12 | <h2><%=l(:label_news_plural)%></h2> | ||
|
r2 | |||
|
r739 | <% if @newss.empty? %> | ||
|
r736 | <p class="nodata"><%= l(:label_no_data) %></p> | ||
|
r739 | <% else %> | ||
<% @newss.each do |news| %> | ||||
<h3><%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %> | ||||
<%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %></h3> | ||||
|
r786 | <p class="author"><%= authoring news.created_on, news.author %></p> | ||
|
r739 | <%= textilizable(news.description) %> | ||
<% end %> | ||||
|
r736 | <% end %> | ||
|
r330 | <%= pagination_links_full @news_pages %> | ||
|
r663 | |||
<% content_for :header_tags do %> | ||||
<%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :page => nil, :key => User.current.rss_key})) %> | ||||
<% end %> | ||||