mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
26 lines
845 B
Text
26 lines
845 B
Text
|
- del = @conn.params["del"]
|
||
|
|
||
|
= if blank?(del) do
|
||
|
a href=@route.(Keyword.put(@params, :del, 1)) title="Include Deleted/Merged Images"
|
||
|
i.fa.fa-plus
|
||
|
i.fa.fa-exclamation>
|
||
|
span.hide-mobile.hide-limited-desktop Show Deleted
|
||
|
|
||
|
= if del != "only" do
|
||
|
a href=@route.(Keyword.put(@params, :del, "only")) title="Only Deleted/Merged Images"
|
||
|
i.fa.fa-minus
|
||
|
i.fa.fa-check>
|
||
|
span.hide-mobile.hide-limited-desktop Only Deleted
|
||
|
|
||
|
= if del == "only" do
|
||
|
a href=@route.(Keyword.put(@params, :del, 1)) title="Include Images Visible to Users"
|
||
|
i.fa.fa-plus
|
||
|
i.fa.fa-check>
|
||
|
span.hide-mobile.hide-limited-desktop Show Non-Deleted
|
||
|
|
||
|
= if present?(del) do
|
||
|
a href=@route.(Keyword.delete(@params, :del)) title="Hide Deleted/Merged Images"
|
||
|
i.fa.fa-minus
|
||
|
i.fa.fa-exclamation>
|
||
|
span.hide-mobile.hide-limited-desktop Hide Deleted
|