2015-03-01 00:55:45 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Name</th>
|
2015-03-01 18:13:52 +00:00
|
|
|
<th>Metacode</th>
|
2015-03-02 22:45:15 +00:00
|
|
|
<th>Description</th>
|
|
|
|
<th>Link</th>
|
2015-03-01 00:55:45 +00:00
|
|
|
<th>Username</th>
|
2015-03-01 18:13:52 +00:00
|
|
|
<th>Permission</th>
|
2015-03-02 01:25:23 +00:00
|
|
|
<th>Synapses</th>
|
2015-03-01 00:55:45 +00:00
|
|
|
</tr>
|
|
|
|
<% @map.topics.each do |topic| %>
|
|
|
|
<tr>
|
|
|
|
<td><%= topic.id %></td>
|
|
|
|
<td><%= topic.name %></td>
|
2015-03-01 18:13:52 +00:00
|
|
|
<td><%= topic.metacode.name %></td>
|
2015-03-02 22:45:15 +00:00
|
|
|
<td><%= topic.desc %></td>
|
|
|
|
<td><%= topic.link %></td>
|
2015-03-01 00:55:45 +00:00
|
|
|
<td><%= topic.user.name %></td>
|
2015-03-01 18:13:52 +00:00
|
|
|
<td><%= topic.permission %></td>
|
2015-03-02 01:25:23 +00:00
|
|
|
<% topic.synapses_csv.each do |s_text| %>
|
|
|
|
<td><%= s_text %></td>
|
|
|
|
<% end %>
|
2015-03-01 00:55:45 +00:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|