summaryrefslogtreecommitdiff
path: root/app/views/nodes/index.html.erb
diff options
context:
space:
mode:
authorerdgeist <erdgeist@bauklotz.local>2009-03-10 19:59:02 +0100
committererdgeist <erdgeist@bauklotz.local>2009-03-10 19:59:02 +0100
commitd6049aeffc7de43393a9a7a1d2f95f26422a046f (patch)
tree7036f509aa4f4a518a00ddb0e12fe8a6eb4d563a /app/views/nodes/index.html.erb
parent3b3158199f147646348fae0008d3f63062967a87 (diff)
parent14ada6b405dac2bea27a2959f6f73a7398776b0b (diff)
Merge branch 'master' of ssh://git@svn.medienhaus.udk-berlin.de/usr/local/git/cccms
Diffstat (limited to 'app/views/nodes/index.html.erb')
-rw-r--r--app/views/nodes/index.html.erb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/nodes/index.html.erb b/app/views/nodes/index.html.erb
index 833ffed8..a2a42b1a 100644
--- a/app/views/nodes/index.html.erb
+++ b/app/views/nodes/index.html.erb
@@ -11,6 +11,7 @@
11 <th class="path">Path</th> 11 <th class="path">Path</th>
12 <th class="actions">Actions</th> 12 <th class="actions">Actions</th>
13 <th class="editor">Locked by</th> 13 <th class="editor">Locked by</th>
14 <th class="revision">Rev.</th>
14 </tr> 15 </tr>
15 <% @nodes.each do |node| %> 16 <% @nodes.each do |node| %>
16 <tr class="<%= cycle("even", "odd") %>"> 17 <tr class="<%= cycle("even", "odd") %>">
@@ -29,6 +30,9 @@
29 <td> 30 <td>
30 <%= "#{node.draft.user.login}" if node.draft && node.draft.user %> 31 <%= "#{node.draft.user.login}" if node.draft && node.draft.user %>
31 </td> 32 </td>
33 <td>
34 <%= node.head.revision if node.head %>
35 </td>
32 </tr> 36 </tr>
33 <% end %> 37 <% end %>
34 </table> 38 </table>