{% extends "base.html" %}
{% load i18n %}
{% block title %}
{{ page.title }}
{% endblock title %}
{% block content %}
{% comment %}
The breadcrumb trail used to open the page here, on a row of its own,
ending in the same word as the heading directly below it. It is drawn in
the app header now, beside the site icon, and the page starts at its
title. `page.header` survives as the extension point it always was, for
a project that puts something of its own above the title — it just no
longer has a default of its own to draw.
{% endcomment %}
{% block page.header %}
{% endblock page.header %}
{% block page.content-wrapper %}
{% block page.title %}
{% block page.actions %}
{% endblock page.actions %}
{% endblock page.title %}
{% block page.content %}
{% trans "Coming soon..." %}
{% endblock page.content %}
{% endblock page.content-wrapper %}
{% block page.footer %}
{% endblock page.footer %}
{% endblock content %}