You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
603 B
12 lines
603 B
<div class="container-fluid mt-2 p-0"> |
|
<div class="col-sm-12"> |
|
<div class="card-header" style="border-bottom: 1px solid darkred;"> <h4 class="mb-0"> New Doctrine </h4> </div> |
|
<div class="card-body" id="doctrineForm"> |
|
<%= render(DoctrineFormComponent.new(current_user: current_user, doctrine: @doctrine)) %> |
|
</div> |
|
<div class="card-footer d-flex justify-content-end mt-2"> |
|
<button type="button" class="btn btn-success me-2" data-action="click->doctrines#save">Save</button> |
|
<button type="button" class="btn btn-danger ms-2" data-bs-dismiss="modal">Back</button> |
|
</div> |
|
</div> |
|
</div>
|
|
|