Write closed note controls using submit_tag

This commit is contained in:
Anton Khorev 2024-06-01 09:05:19 +03:00
parent c36f09b28d
commit 1b1d8326d8

View file

@ -79,10 +79,14 @@
</div> </div>
<div class="d-flex flex-wrap gap-1"> <div class="d-flex flex-wrap gap-1">
<% if @note.status != "hidden" and current_user and current_user.moderator? -%> <% if @note.status != "hidden" and current_user and current_user.moderator? -%>
<input type="submit" name="hide" value="<%= t(".hide") %>" class="btn btn-light" data-method="DELETE" data-url="<%= api_note_url(@note, "json") %>"> <%= submit_tag t(".hide"), :name => "hide", :class => "btn btn-light",
:data => { :method => "DELETE",
:url => api_note_url(@note, "json") } %>
<% end -%> <% end -%>
<% if current_user -%> <% if current_user -%>
<input type="submit" name="reopen" value="<%= t(".reactivate") %>" class="btn btn-primary" data-method="POST" data-url="<%= reopen_api_note_url(@note, "json") %>"> <%= submit_tag t(".reactivate"), :name => "reopen", :class => "btn btn-primary",
:data => { :method => "POST",
:url => reopen_api_note_url(@note, "json") } %>
<% end -%> <% end -%>
</div> </div>
</form> </form>