2014-05-17 18:57:03 +00:00
|
|
|
<%= form_for(@metacode) do |f| %>
|
|
|
|
<% if @metacode.errors.any? %>
|
|
|
|
<div id="error_explanation">
|
|
|
|
<h2><%= pluralize(@metacode.errors.count, "error") %> prohibited this metacode from being saved:</h2>
|
|
|
|
<ul>
|
|
|
|
<% @metacode.errors.full_messages.each do |msg| %>
|
|
|
|
<li><%= msg %></li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :name %>
|
|
|
|
<%= f.text_field :name %>
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
</div>
|
2016-02-26 06:04:01 +00:00
|
|
|
<% unless @metacode.new_record? %>
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label 'Current Icon' %>
|
|
|
|
<%= image_tag @metacode.icon, width: 96 %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2014-05-17 18:57:03 +00:00
|
|
|
<div class="field">
|
2016-02-26 06:04:01 +00:00
|
|
|
<% if @metacode.new_record? %>
|
|
|
|
<%= f.label 'Icon' %>
|
|
|
|
<% else %>
|
|
|
|
<%= f.label 'Replace Icon: ' %>
|
|
|
|
<% end %>
|
2016-02-25 06:41:47 +00:00
|
|
|
<%= f.hidden_field :manual_icon, value: nil %>
|
|
|
|
<%= f.file_field :aws_icon %>
|
2014-05-17 18:57:03 +00:00
|
|
|
<div class="clearfloat"></div>
|
|
|
|
</div>
|
2014-09-30 02:26:12 +00:00
|
|
|
<div class="field">
|
|
|
|
<%= f.label :color, "Color (hex with # sign)" %>
|
|
|
|
<%= f.text_field :color %>
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
</div>
|
2014-05-17 18:57:03 +00:00
|
|
|
<div class="actions">
|
2016-08-16 14:25:07 +00:00
|
|
|
<%= link_to 'Cancel', metacodes_path, { :class => 'button' } %>
|
2014-05-17 18:57:03 +00:00
|
|
|
<%= f.submit :class => 'add' %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|