_publish_event.html.erb 476 B

12345678910111213
  1. <%= form_for(event, url: publish_event_path(event)) do |f| %>
  2. <fieldset>
  3. <h3 class="fieldset-heading">Publish Event <%= event.event_id %></h3>
  4. <% if not event.published %>
  5. <div class="alert alert-warning"><strong>WARNING:</strong> This event has unpublished modifications. Select the publish button below to publish these changes to associated vens.</div>
  6. <% end %>
  7. <%= f.submit "Publish Event", class: 'btn btn-success' %>
  8. </fieldset>
  9. <% end %>