LiteracyVolunteersOfMA/lvm-rails

View on GitHub
app/views/tutoring_sessions/edit.html.erb

Summary

Maintainability
Test Coverage
<div class="row">
  <div class="col-md-12">
    <h1 class="text-center">
      Edit Tutoring Session
      <% if !current_user.tutor? %>
        <br> <small> For <%= link_to @tutor.name, @tutor %> </small>
      <% end %>
    </h1>
  </div>
</div>

<div class="row">
  <div class="col-md-6 col-md-offset-3">
    <hr>
    <%= simple_form_for :tutoring_session, url: tutoring_session_path(@tutoring_session), method: :patch do |f| %>
      <%= render partial: 'form', locals: {f: f} %>
    <% end %>
  </div>
</div>