{% if let Some(title) = post.title %}{{ title }}{% else %}Details{% endif %}
{% if let Some(description) = post.description %}
{{ description | markdown }}
{% endif %}
| Is public post? |
{% if post.is_public %}Yes{% else %}No{% endif %} |
| Rating |
{% match post.rating.as_ref() %} {% when "u" %} Unrated {% when "s" %}
Safe {% when "q" %} Questionable {% when "e" %} Explicit {% else %}
Unknown {% endmatch %}
|
| Source(s) |
{% if sources.is_empty() %}
None{% else %}
{% endif %}
|
| Type |
{{ post.media_type | capitalize }} |
| Width |
{{ post.width }}px |
| Height |
{{ post.height }}px |
| Upload date |
{{ post.uploaded_at }} |
{% if can_edit %}
{% endif %}