metamaps--metamaps/views/metacodes/index.html.erb

31 lines
727 B
Plaintext
Raw Normal View History

2014-09-16 01:57:34 +00:00
<div id="yield">
2018-03-05 17:33:16 +00:00
<div className='centerContent'>
2017-10-14 19:55:50 +00:00
<br />
<table>
<tr>
<th>Name</th>
<th>Icon</th>
<th>Color</th>
<th></th>
<th></th>
</tr>
2018-03-04 02:25:42 +00:00
{ @metacodes.each do |metacode| }
2017-10-14 19:55:50 +00:00
<tr>
2018-03-04 02:25:42 +00:00
<td>{ metacode.name }</td>
2018-03-05 17:33:16 +00:00
<td className="iconURL">{ metacode.icon }</td>
2018-03-04 02:25:42 +00:00
{ if metacode.color }
2018-03-05 17:33:16 +00:00
<td className="iconColor" style="background-color: { metacode.color }">
2018-03-04 02:25:42 +00:00
{ metacode.color }
2017-10-14 19:55:50 +00:00
</td>
2018-03-04 02:25:42 +00:00
{ else }
2017-10-14 19:55:50 +00:00
<td></td>
2018-03-04 02:25:42 +00:00
{ end }
<td>{ image_tag metacode.icon, width: 40 }</td>
<td>{ link_to 'Edit', edit_metacode_path(metacode) }</td>
2017-10-14 19:55:50 +00:00
</tr>
2018-03-04 02:25:42 +00:00
{ end }
2017-10-14 19:55:50 +00:00
</table>
2014-09-16 01:57:34 +00:00
</div>
</div>