Files
mock-gui/views/deletegitprj.erb
2025-03-17 23:33:47 +03:00

18 lines
1.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<%= erb :header %>
<div class="container">
<h2 class="text-center">Удаление git проекта <%= @git_name %> из <%= @proj_name %></h2>
<form action="/prjdgit/<%= ERB::Util.url_encode(@proj_id) %>/<%= ERB::Util.url_encode(@git_id) %>" method="post">
<div class="form-check form-switch text-center pb-3">
<input class="form-check-input" type="checkbox" role="switch" id="isdelete" name="isdelete">
<label class="form-check-label" for="isdelete">
Вы уверены, что хотите удалить данный git репозиторий?<br />
Все rpm пакеты собранные из данного репозитория будут удалены
</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-danger" name="delete" value="delete">Удалить</button>
</div>
</form>
</div>
<%= erb :footer %>