##// END OF EJS Templates
Fixed: <td> closed with a </th>...
Fixed: <td> closed with a </th> git-svn-id: http://redmine.rubyforge.org/svn/trunk@886 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r786:a32d6a49c094
r873:26a1ae480836
Show More
list_news.rhtml
33 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
The news list now shows the full news contents....
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 %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_news_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <% if @newss.empty? %>
Jean-Philippe Lang
Application layout refactored....
r736 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
The news list now shows the full news contents....
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>
Jean-Philippe Lang
Fixed: pagination broken on news list with Opera....
r786 <p class="author"><%= authoring news.created_on, news.author %></p>
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <%= textilizable(news.description) %>
<% end %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= pagination_links_full @news_pages %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
<% end %>