diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-22 17:52:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-22 17:52:43 +0000 |
commit | 2b779644682bfb2c47e1bf1e30e65a4384e2bf26 (patch) | |
tree | 3a39caf9eb11814c6d6b6965eeb31b89049d65aa /app/views/projects | |
parent | fe7c0d648444bcd4d7e5803f480b1ede62e14553 (diff) | |
download | redmine-2b779644682bfb2c47e1bf1e30e65a4384e2bf26.tar.gz redmine-2b779644682bfb2c47e1bf1e30e65a4384e2bf26.zip |
The news list now shows the full news contents.
News add/edit forms are now accessible with no additional request.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@750 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/list_news.rhtml | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/app/views/projects/list_news.rhtml b/app/views/projects/list_news.rhtml index 82d63a280..b58524e36 100644 --- a/app/views/projects/list_news.rhtml +++ b/app/views/projects/list_news.rhtml @@ -1,15 +1,31 @@ <div class="contextual"> -<%= link_to_if_authorized l(:label_news_new), {:controller => 'projects', :action => 'add_news', :id => @project}, :class => 'icon icon-add' %> +<%= 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 %> </div> <h2><%=l(:label_news_plural)%></h2> -<% if @news.empty? %> +<% if @newss.empty? %> <p class="nodata"><%= l(:label_no_data) %></p> +<% 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> + <p><span class="author"><%= authoring news.created_on, news.author %></p> + <%= textilizable(news.description) %> +<% end %> <% end %> - - -<%= render :partial => 'news/news', :collection => @news %> <%= pagination_links_full @news_pages %> <% content_for :header_tags do %> |