Quick Mark Explicit: Not on user's own pictures

main
Noah Petherbridge 2024-03-19 19:41:17 -07:00
parent d623f0bc3c
commit 1c2982aec0
2 changed files with 3 additions and 3 deletions

View File

@ -541,7 +541,7 @@
{{template "card-body" .}}
<!-- Quick mark photo as explicit -->
{{if not .Explicit}}
{{if and (not .Explicit) (ne .UserID $Root.CurrentUser.ID)}}
<div class="mt-2">
<a href="#"
class="has-text-danger is-size-7 nonshy-mark-explicit"
@ -667,7 +667,7 @@
{{template "card-body" .}}
<!-- Quick mark photo as explicit -->
{{if not .Explicit}}
{{if and (not .Explicit) (ne .UserID $Root.CurrentUser.ID)}}
<div class="mt-2">
<a href="#"
class="has-text-danger is-size-7 nonshy-mark-explicit"

View File

@ -99,7 +99,7 @@
{{end}}
<!-- Quick mark photo as explicit -->
{{if not .Photo.Explicit}}
{{if and (not .Photo.Explicit) (ne .Photo.UserID .CurrentUser.ID)}}
<div class="mt-2">
<a href="#"
class="has-text-danger is-size-7 nonshy-mark-explicit"