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:
Christopher C. Wells 2020-02-18 05:43:12 -08:00 committed by Christopher Charbonneau Wells
parent 2346995cb3
commit 192d8d9b09
2 changed files with 4 additions and 5 deletions

View File

@ -1,9 +1,10 @@
{% extends "admin/base.html" %}
{% load i18n %}
{% block title %}{{ title }} | Baby Buddy Admin{% endblock %}
{% block title %}{{ title }} | {% trans "Database Admin"%}{% endblock %}
{% 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 %}
{% block nav-global %}{% endblock %}

View File

@ -245,9 +245,7 @@
target="_blank">{% trans "API Browser" %}</a>
{% if request.user.is_staff %}
<a href="{% url 'babybuddy:user-list' %}" class="dropdown-item">{% trans "Users" %}</a>
<a href="{% url 'admin:index' %}"
class="dropdown-item"
target="_blank">{% trans "Backend Admin" %}</a>
<a href="{% url 'admin:index' %}" class="dropdown-item">{% trans "Database Admin" %}</a>
{% endif %}
<h6 class="dropdown-header">{% trans "Support" %}</h6>
<a href="https://github.com/babybuddy/babybuddy"