23 lines
779 B
HTML
23 lines
779 B
HTML
{% extends "admin/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block html_attrs %}
|
|
lang="fa" dir="rtl"
|
|
{% endblock %}
|
|
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static 'override.css' %}" />
|
|
<link rel="stylesheet" type="text/css" href="{% static 'fonts.css' %}" />
|
|
{% endblock %}
|
|
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">مدیریت هی ملز</a></h1>
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{% if plausible_domain %}
|
|
<script defer data-domain="{{ plausible_domain }}" src="https://plausible.io/js/script.js"></script>
|
|
{% endif %}
|
|
{% endblock %}
|