From d3c3d34aaee220f1d3a9ba7bd8d0f9dc5e9c6b79 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Fri, 14 Mar 2025 13:57:55 +0100 Subject: [PATCH] [feature/frontend] Add visibility icon for posts (#3908) --- web/source/css/status.css | 4 ++++ web/template/status_info.tmpl | 29 ++++++++++++++++++++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/web/source/css/status.css b/web/source/css/status.css index 5938919f5..4b2d7e2a7 100644 --- a/web/source/css/status.css +++ b/web/source/css/status.css @@ -448,6 +448,10 @@ main { gap: 0.4rem; } + .stats-item.published-at { + text-decoration: underline; + } + .stats-item:not(.published-at):not(.edited-at) { z-index: 1; user-select: none; diff --git a/web/template/status_info.tmpl b/web/template/status_info.tmpl index 194a799f5..5d26811d7 100644 --- a/web/template/status_info.tmpl +++ b/web/template/status_info.tmpl @@ -17,9 +17,36 @@ // along with this program. If not, see . */ -}} +{{- define "visibility_icon" -}} + {{- if eq .Visibility "public" -}} + globe + {{- else if eq .Visibility "unlisted" -}} + unlock + {{- else -}} + question + {{- end -}} +{{- end -}} + +{{- define "visibility_title" -}} + {{- if eq .Visibility "public" -}} + Public + {{- else if eq .Visibility "unlisted" -}} + Unlisted + {{- else -}} + Unknown + {{- end -}} +{{- end -}} + {{- with . }}
+
+
Visibility
+
+ + {{- template "visibility_title" . -}} +
+
Published
@@ -30,7 +57,7 @@
Edited
- (edited ) + edited
{{ end }}