Sha256: 8994793c8d61feeea42653ba8633e7dd513f8ad0c9604fca3189ab326c280736
Contents?: true
Size: 800 Bytes
Versions: 7
Compression:
Stored size: 800 Bytes
Contents
<%= form_for @service do |f| -%> <%- if @service.errors.any? -%> <div id="error_explanation"> <h2>Please correct the following errors:</h2> <%- @service.errors.to_a.in_groups(2, false).each do |group| -%> <ul> <%- group.each do |msg| -%> <li><%= msg -%></li> <%- end -%> </ul> <%- end -%> <br style="clear: both;" /> </div> <br style="clear: both;" /> <%- end -%> <fieldset class="form_container"> <%= legend_tag 'About This Service' -%> <div class="form_column"> <%= f.text_field :name -%> <%= f.text_area :description -%> </div> </fieldset> <%= f.submit 'Save', :class => 'button' -%> <%= link_to 'Cancel', services_path, :class => 'button' -%> <br style="clear: both;" /> <%- end -%>
Version data entries
7 entries across 7 versions & 1 rubygems