Add drop_down to news_bulletin widget index for categories

This commit is contained in:
Christophe Vilayphiou 2012-05-07 15:58:52 +08:00
parent 8a3f0b9bdc
commit 4c7a3842d6
1 changed files with 14 additions and 1 deletions

View File

@ -2,7 +2,20 @@
<% if @news_bulletins and !@news_bulletins.nil? %>
<h2 class="topic_title"><%= t('news.campus_news')%></h2>
<%= link_to t('news.more'),panel_news_front_end_news_bulletins_path(), :class => "topic_note" %>
<%#= link_to t('news.more'),panel_news_front_end_news_bulletins_path(), :class => "topic_note" %>
<div class="btn-group">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<%= t('news.more') %>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<% @news_bulletin_categorys.each do |category| %>
<li>
<%= link_to category.i18n_variable[I18n.locale], panel_news_front_end_news_bulletins_path(:category_id => category.id) %>
</li>
<% end %>
</ul>
</div>
<div class="topic_prev">previous page</div>
<div class="topic_next">next page</div>
<ul id="topic_list">