To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_tags / app / views / projects / index.html.erb @ 1260:b18f581b260a

History | View | Annotate | Download (1.3 KB)

1 739:b7ac21913927 luis
<% content_for :header_tags do %>
2
    <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
3 806:a42dcc01dfee chris
    <%= stylesheet_link_tag 'redmine_tags', :plugin => 'redmine_tags' %>
4 739:b7ac21913927 luis
<% end %>
5 768:0829e808ec49 luis
<%= javascript_include_tag 'projects_index', :plugin => 'redmine_tags' %>
6
7 739:b7ac21913927 luis
<div class="contextual">
8
    <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }%>
9 1235:775d89567f41 chris
    <%= ('| ' + link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add')).html_safe if User.current.allowed_to?(:add_project, nil, :global => true) %>
10 739:b7ac21913927 luis
</div>
11
12 755:bde9c5bfb559 luis
<div style="clear:both;"></div>
13 784:4b46e861a43a chris
<h2>
14
  <%= l("label_project_all") %>
15
</h2>
16
17
<div style="clear:both;"></div>
18 776:af852d82b00b luis
19 1260:b18f581b260a luis
<%= form_tag :projects, :method => :get do -%>
20
  <div>
21
    <div id='filter_tags'>
22
      <%= render :partial => 'filter_search_tags' -%>
23
    </div>
24 789:863f447c4d88 chris
25 1260:b18f581b260a luis
    <p class='q'>
26
      <%= label_tag 'search', l('project_filtering_q_label') %>
27
      <%= text_field_tag 'search', params[:search] -%>
28
      <%= submit_tag :search, :name => nil %>
29
    </p>
30 805:0b1b94ffb30f luis
31 1260:b18f581b260a luis
  </div>
32 1252:fe3777d42b76 luis
<%- end -%>
33 789:863f447c4d88 chris
34 755:bde9c5bfb559 luis
<div id="projects">
35
  <%= render :partial => 'filtered_projects' %>
36
</div>
37 739:b7ac21913927 luis
38
<% other_formats_links do |f| %>
39
        <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
40
<% end %>
41
42
<% html_title(l(:label_project_plural)) -%>