mirror of https://github.com/snachodog/mybuddy.git
Change Django backend name to "Database Admin"
This is primarily done to make the documentation for import/export a little easier to understand.
This commit is contained in:
parent
2346995cb3
commit
192d8d9b09
|
@ -1,9 +1,10 @@
|
||||||
{% extends "admin/base.html" %}
|
{% extends "admin/base.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
|
||||||
{% block title %}{{ title }} | Baby Buddy Admin{% endblock %}
|
{% block title %}{{ title }} | {% trans "Database Admin"%}{% endblock %}
|
||||||
|
|
||||||
{% block branding %}
|
{% block branding %}
|
||||||
<h1 id="site-name"><a href="{% url 'admin:index' %}">Baby Buddy Admin</a></h1>
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">{% trans "Database Admin"%}</a></h1>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block nav-global %}{% endblock %}
|
{% block nav-global %}{% endblock %}
|
||||||
|
|
|
@ -245,9 +245,7 @@
|
||||||
target="_blank">{% trans "API Browser" %}</a>
|
target="_blank">{% trans "API Browser" %}</a>
|
||||||
{% if request.user.is_staff %}
|
{% if request.user.is_staff %}
|
||||||
<a href="{% url 'babybuddy:user-list' %}" class="dropdown-item">{% trans "Users" %}</a>
|
<a href="{% url 'babybuddy:user-list' %}" class="dropdown-item">{% trans "Users" %}</a>
|
||||||
<a href="{% url 'admin:index' %}"
|
<a href="{% url 'admin:index' %}" class="dropdown-item">{% trans "Database Admin" %}</a>
|
||||||
class="dropdown-item"
|
|
||||||
target="_blank">{% trans "Backend Admin" %}</a>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h6 class="dropdown-header">{% trans "Support" %}</h6>
|
<h6 class="dropdown-header">{% trans "Support" %}</h6>
|
||||||
<a href="https://github.com/babybuddy/babybuddy"
|
<a href="https://github.com/babybuddy/babybuddy"
|
||||||
|
|
Loading…
Reference in New Issue