projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
8286: convert star method into action controller action and refresh the star icon...
[arvados.git]
/
apps
/
workbench
/
app
/
views
/
projects
/
public.html.erb
1
<table class="table">
2
<colgroup>
3
<col width="25%" />
4
<col width="75%" />
5
</colgroup>
6
<thead>
7
<tr class="contain-align-left">
8
<th>
9
Name
10
</th>
11
<th>
12
Description
13
</th>
14
</tr>
15
</thead>
16
17
<tbody>
18
<% @objects.each do |p| %>
19
<tr>
20
<td>
21
<%= link_to_if_arvados_object p, {friendly_name: true} %>
22
</td>
23
<td>
24
<%= render_attribute_as_textile(p, "description", p.description, true) %>
25
</td>
26
</tr>
27
<% end %>
28
</tbody>
29
</table>