mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-21 08:59:30 +01:00
42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
{% block latest_content_section %}
|
|
<ul id="latest_content_section" class="list">
|
|
<li class="py-4 text-center text-xs opacity-60 tracking-wide">Recently added content</li>
|
|
{% for item in latest_text_contents %}
|
|
<li class="list-row">
|
|
<div class="bg-accent rounded-box size-10 flex justify-center items-center text-accent-content">
|
|
{% if item.url %}
|
|
{% include "icons/globe_icon.html" %}
|
|
{% elif item.file_info %}
|
|
{% include "icons/document_icon.html" %}
|
|
{% else %}
|
|
{% include "icons/chat_icon.html" %}
|
|
{% endif %}
|
|
</div>
|
|
<div>
|
|
<div class="truncate max-w-[160px]">
|
|
{% if item.url %}
|
|
{{item.url}}
|
|
{% elif item.file_info%}
|
|
{{item.file_info.file_name}}
|
|
{% else %}
|
|
{{item.text}}
|
|
{% endif %}
|
|
</div>
|
|
<div class="text-xs font-semibold opacity-60">
|
|
{{item.created_at|datetimeformat(format="short", tz=user.timezone)}} </div>
|
|
</div>
|
|
<p class="list-col-wrap text-xs [&:before]:content-['Instructions:_'] [&:before]:opacity-60">
|
|
{{item.instructions}}
|
|
</p>
|
|
<button class="btn btn-disabled btn-square btn-ghost btn-sm">
|
|
{% include "icons/edit_icon.html" %}
|
|
</button>
|
|
<button hx-delete="/text-content/{{item.id}}" hx-target="#latest_content_section" hx-swap="outerHTML"
|
|
class="btn btn-square btn-ghost btn-sm">
|
|
{% include "icons/delete_icon.html" %}
|
|
|
|
</button>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %} |