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 @ 458:f2288bb384bb

History | View | Annotate | Download (613 Bytes)

1 458:f2288bb384bb luis
<div class="contextual">
2
                <%= link_to l(:label_publication_new), {:controller => 'publications', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
3 457:8aa775cb7c0a luis
</div>
4 329:4575b631f6ce luis
5 457:8aa775cb7c0a luis
<div class="splitcontentleft">
6
  <h3>Publications#index</h3>
7 424:b601a9e472f3 luis
8
9 457:8aa775cb7c0a luis
  <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><%= publication.title %></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 %>