2024-07-11 16:22:30 +03:00
|
|
|
{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
|
2023-06-29 21:25:40 +03:00
|
|
|
# {{ file.File.Description }}
|
2022-08-21 01:33:27 +03:00
|
|
|
|
2024-07-11 16:22:30 +03:00
|
|
|
{% for tag in file.File.Tags %}{{ tag_url(tag, 0) }}
|
2024-07-12 12:18:02 +03:00
|
|
|
{% endfor %}
|
2023-06-29 21:25:40 +03:00
|
|
|
|
2024-07-17 12:13:23 +03:00
|
|
|
```
|
|
|
|
Created: {{ file.File.Created}}
|
|
|
|
Copyright: {{ file.File.Copyright }}
|
|
|
|
Language: {{ file.File.Lang }}
|
|
|
|
```
|
2023-06-29 21:25:40 +03:00
|
|
|
|
|
|
|
{{ file.FormatContent()|safe }}
|
|
|
|
|
2024-07-11 16:22:30 +03:00
|
|
|
{{ category_url(file.File.CategoryPath, file.File.Category|last, 0) }}
|
|
|
|
|
2025-03-24 21:05:50 +02:00
|
|
|
### {{ T('mentions') }}
|
|
|
|
{% if mentions %}
|
|
|
|
{% for id, mention in mentions %}=> {{ mention}}
|
|
|
|
{% endfor %} {% endif %}
|
|
|
|
=> /mention/{{file.File.Id}} {{ T('newMention') }}
|
|
|
|
|
2024-07-11 16:22:30 +03:00
|
|
|
{{ home(lang) }}
|
2024-07-18 21:34:57 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
Page counter: {{pageCounter}}
|
|
|
|
```
|
2025-03-24 21:05:50 +02:00
|
|
|
|
|
|
|
{% if admin and adminWaitingMentions %}
|
|
|
|
### Keravuotuojė sekcėjė
|
|
|
|
{% for id, mention in adminWaitingMentions %}
|
|
|
|
=> {{ mention }}
|
|
|
|
=> /admin/mentions/review/{{file.File.Id}}/{{id}} ✓ Patvėrtintė
|
|
|
|
=> /admin/mentions/remove/{{file.File.Id}}/{{id}} 🗙 Pašalintė
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|