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.
|
|
|
|
<%= erb :header %>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<h2 class="text-center">Создание снимка репозитория проекта <%= @proj_name %></h2>
|
|
|
|
|
<form action="/prjsnap_add/<%= ERB::Util.url_encode(@proj_id) %>" method="post">
|
|
|
|
|
<div class="form-check form-switch text-center pb-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" role="switch" id="yes" name="yes">
|
|
|
|
|
<label class="form-check-label" for="yes">
|
|
|
|
|
Вы уверены, что хотите создать копию текущего репозитория?
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 text-center">
|
|
|
|
|
<button type="submit" class="btn btn-primary" name="cancel" value="cancel">Отменить</button>
|
|
|
|
|
<button type="submit" class="btn btn-success" name="create" value="create">Создать</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<%= erb :footer %>
|