Initial commit
This commit is contained in:
33
env/lib/python3.10/site-packages/wagtail/admin/templates/wagtailadmin/home.html
vendored
Normal file
33
env/lib/python3.10/site-packages/wagtail/admin/templates/wagtailadmin/home.html
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "wagtailadmin/generic/base.html" %}
|
||||
{% load wagtailadmin_tags i18n %}
|
||||
{% block bodyclass %}homepage{% endblock %}
|
||||
|
||||
{% block extra_css %}
|
||||
{{ block.super }}
|
||||
{{ media.css }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% fragment as header_title %}
|
||||
{% block branding_welcome %}{% blocktrans trimmed %}Welcome to the {{ site_name }} Wagtail CMS{% endblocktrans %}{% endblock %}
|
||||
{% endfragment %}
|
||||
|
||||
|
||||
<div class="nice-padding w-mt-14">
|
||||
{% avatar_url user 70 as avatar %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=header_title description=user|user_display_name avatar=avatar merged=1 %}
|
||||
|
||||
{% if panels %}
|
||||
{% for panel in panels %}
|
||||
{% component panel fallback_render_method=True %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<p>{% trans "This is your dashboard on which helpful information about content you've created will be displayed." %}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_js %}
|
||||
{{ block.super }}
|
||||
{{ media.js }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user