{% extends "layout.html" %}
{% import "macros/table.html" as table %}
{% import "macros/common.html" as common %}
{% set title = "Content collections" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{{ common.render_head(title) }}
{{
table.render_table(
collections,
["ID", "Name"],
["id", "name"],
[
{ "label": "show", "url": "content.index", "value": "collection.id"}
]
)
}}
{% endblock %}