Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / projects / public.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <table class="table">
6   <colgroup>
7     <col width="25%" />
8     <col width="75%" />
9   </colgroup>
10   <thead>
11     <tr class="contain-align-left">
12       <th>
13         Name
14       </th>
15       <th>
16         Description
17       </th>
18     </tr>
19   </thead>
20
21   <tbody>
22   <% @objects.each do |p| %>
23     <tr>
24       <td>
25         <%= link_to_if_arvados_object p, {friendly_name: true} %>
26       </td>
27       <td>
28         <%= render_attribute_as_textile(p, "description", p.description, true) %>
29       </td>
30     </tr>
31   <% end %>
32   </tbody>
33 </table>