<% if params[:action] == 'edit' %>
<%= label_tag :user_id, "User ID:", class: "crayons-field__label" %>
<%= text_field_tag :user_id, @html_variant.user_id, class: "crayons-textfield", disabled: true %>
<% end %>
<%= label_tag :name, "Name:", class: "crayons-field__label" %>
<%= text_field_tag :name, @html_variant.name, class: "crayons-textfield" %>
<%= label_tag :group, "Group:", class: "crayons-field__label" %>
<%= select_tag :group, options_for_select(HtmlVariant::GROUP_NAMES, selected: @html_variant.group), class: "crayons-select" %>
<%= label_tag :target_tag, "Target Tag:", class: "crayons-field__label" %>
<%= text_field_tag :target_tag, @html_variant.target_tag, size: "100x10", class: "crayons-textfield" %>
<%= label_tag :html, "HTML:", class: "crayons-field__label" %>
<%= text_area_tag :html, @html_variant.html, size: "100x10", class: "crayons-textfield" %>
<%= label_tag :published, "Published:", class: "crayons-field__label" %>
<%= select_tag :published, options_for_select([false, true], selected: @html_variant.published), class: "crayons-select" %>
<% if params[:action] == 'edit' %>
<%= label_tag :approved, "Approved:", class: "crayons-field__label" %>
<%= select_tag :approved, options_for_select([false, true], selected: @html_variant.approved), class: "crayons-select" %>
<% end %>