Files
mock-gui/views/prjshot_add.erb

17 lines
994 B
Plaintext
Raw Normal View History

2025-12-24 23:01:50 +03:00
<%= erb :header %>
<div class="container">
2025-12-25 23:39:27 +03:00
<h2 class="text-center">Создание снимка репозитория проекта <%= @proj_name %></h2>
2025-12-24 23:01:50 +03:00
<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>
2025-12-25 15:10:24 +03:00
<button type="submit" class="btn btn-success" name="create" value="create">Создать</button>
2025-12-24 23:01:50 +03:00
</div>
</form>
</div>
<%= erb :footer %>