summaryrefslogtreecommitdiff
path: root/web/template
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-03-14 13:57:55 +0100
committerLibravatar GitHub <noreply@github.com>2025-03-14 13:57:55 +0100
commitd3c3d34aaee220f1d3a9ba7bd8d0f9dc5e9c6b79 (patch)
tree03da20fa1b871afc71447a2d824d66265a6ba020 /web/template
parent[chore] Tweak "nothing here!" message (#3907) (diff)
downloadgotosocial-d3c3d34aaee220f1d3a9ba7bd8d0f9dc5e9c6b79.tar.xz
[feature/frontend] Add visibility icon for posts (#3908)
Diffstat (limited to 'web/template')
-rw-r--r--web/template/status_info.tmpl29
1 files changed, 28 insertions, 1 deletions
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 <http://www.gnu.org/licenses/>.
*/ -}}
+{{- 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 . }}
<dl class="status-stats">
<div class="stats-grouping">
+ <div class="stats-item visibility-level" title="{{- template "visibility_title" . -}}">
+ <dt class="sr-only">Visibility</dt>
+ <dd>
+ <i class="fa fa-{{- template "visibility_icon" . -}}" aria-hidden="true"></i>
+ <span class="sr-only">{{- template "visibility_title" . -}}</span>
+ </dd>
+ </div>
<div class="stats-item published-at text-cutoff">
<dt class="sr-only">Published</dt>
<dd>
@@ -30,7 +57,7 @@
<div class="stats-item edited-at text-cutoff">
<dt class="sr-only">Edited</dt>
<dd>
- (edited <time class="dt-updated" datetime="{{- .EditedAt -}}">{{- .EditedAt | timestampPrecise -}}</time>)
+ edited <time class="dt-updated" datetime="{{- .EditedAt -}}">{{- .EditedAt | timestampPrecise -}}</time>
</dd>
</div>
{{ end }}