{% load i18n madga_studio_tags %} {% for post in posts %} {% empty %} {% endfor %}
{% trans "Title" %} {% trans "Status" %} {% trans "Category" %} {% trans "Author" %} {% trans "Date" %} {% trans "Views" %}
{{ post.title|default:_("Untitled") }}
/{{ post.slug }}
{% studio_badge post.status post.get_status_display %} {{ post.category.name|default:"—" }} {{ post.author.username|default:"—" }} {{ post.published_at|date:"M j, Y"|default:post.updated_at|date:"M j, Y" }} {{ post.views }}
{% if post.slug %} {% studio_icon "eye" size=14 stroke=2 %} {% endif %} {% trans "Edit" %}
{% studio_empty title=_("No posts in this view") message=_("Create the first one.") action_label=_("New post") action_href="/studio/posts/new/" %}