Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail-gardentronic / admin / templates / wagtailadmin / pages / preview_error.html
Size: Mime:
{% extends 'wagtailadmin/base.html' %}
{% load i18n %}

{% block titletag %}{% trans 'Preview error' %}{% endblock %}

{% block content %}
    <header class="nice-padding">
        <h1>{% trans 'Preview error' %}</h1>
    </header>
    <div class="nice-padding">
        <p>
            {% blocktrans %}
                Impossible to preview this page, some errors are remaining.
                Please close this tab, edit the page to fix these errors,
                then use preview again.
            {% endblocktrans %}
        </p>
        <a class="button" href="javascript:window.close()">
            {% trans 'Close' %}
        </a>
    </div>
{% endblock %}