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 / vendor / plugins / redmine_bibliography / app / views / publications / index.html.erb @ 461:841b2e40895d

History | View | Annotate | Download (716 Bytes)

1
<div class="contextual">                
2
                <%= link_to l(:label_publication_new), {:controller => 'publications', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
3
</div>
4

    
5
<div class="splitcontentleft">
6
  <h3>Publications#index</h3>
7

    
8

    
9
  <table>
10
    <tr>
11
      <th>Number</th>
12
      <th>Title</th> 
13
    </tr>
14

    
15
    <% @publications.each do |publication| %>
16
            <tr>
17
              <td><%= publication.id %></td>
18
              <td><%= link_to publication.title, :controller => "publications", :action => "show", :id => publication, :project_id => @project %></td>
19
                   </tr>
20
    <% end %>    
21
  </table>
22

    
23
</div>
24

    
25
<div class="splitcontentright">
26
  placeholder div
27
</div>
28

    
29

    
30
<% content_for :sidebar do %>
31
  Sidebar
32
<% end %>
33