40 lines
2.2 KiB
Plaintext
40 lines
2.2 KiB
Plaintext
<ul>
|
|
<li><%= link_to "Resize to window", "#", :id => "image-resize-to-window-link" %></li>
|
|
<li><%= link_to "Favorite", favorites_path(:post_id => post.id), :remote => true, :method => :post, :id => "add-to-favorites", :title => "Shortcut is F" %></li>
|
|
<li><%= link_to "Unfavorite", favorite_path(post), :remote => true, :method => :delete, :id => "remove-from-favorites" %></li>
|
|
<li><%= link_to "Add to pool", "#", :id => "pool" %></li>
|
|
<% if post.is_note_locked? %>
|
|
<li><span id="note-locked-notice">Note locked</span></li>
|
|
<% else %>
|
|
<li><%= link_to "Add note", "#", :id => "translate", :title => "Shortcut is N" %></li>
|
|
<% end %>
|
|
<li><%= link_to "Find similar", "http://danbooru.iqdb.org/db-search.php?url=http://#{Danbooru.config.hostname}#{post.preview_file_url}" %></li>
|
|
|
|
<% unless post.is_status_locked? %>
|
|
<% if !post.is_deleted? && !post.is_pending? %>
|
|
<li><%= link_to "Flag", new_post_flag_path(:post_id => post.id), :id => "flag" %></li>
|
|
<% end %>
|
|
|
|
<% if post.is_flagged? || post.is_deleted? %>
|
|
<li><%= link_to "Appeal", new_post_appeal_path(:post_id => post.id), :id => "appeal" %></li>
|
|
<% end %>
|
|
|
|
<% if CurrentUser.is_janitor? %>
|
|
<% if post.is_deleted? %>
|
|
<li><%= link_to "Undelete", undelete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %></li>
|
|
<% else %>
|
|
<li><%= link_to "Delete", confirm_delete_moderator_post_post_path(:post_id => post.id) %></li>
|
|
<% end %>
|
|
|
|
<% if post.is_flagged? || post.is_pending? %>
|
|
<li><%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :remote => true, :method => :post, :id => "approve" %></li>
|
|
<% else %>
|
|
<li><%= link_to "Hide from queue", moderator_post_disapproval_path(:post_id => post.id), :remote => true, :method => :post, :id => "disapprove" %></li>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if CurrentUser.is_admin? %>
|
|
<li><%= link_to "Expunge", annihilate_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "annihilate", :confirm => "This will permanently delete this post (meaning the file will be deleted). Are you sure you want to delete this post?" %></li>
|
|
<% end %>
|
|
</ul> |