Hide all title details of the login view.

This commit is contained in:
Roberto Rosario
2015-09-16 16:19:15 -04:00
parent dbd676646b
commit b980823375
2 changed files with 6 additions and 2 deletions

View File

@@ -14,7 +14,11 @@
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="{{ LANGUAGE_CODE }}" />
<title>{% block title %}{% endblock %} :: {% block project_name %}{% project_name %}{% endblock %}</title>
<title>
{% block base_title %}
{% block title %}{% endblock %} :: {% block project_name %}{% project_name %}{% endblock %}
{% endblock base_title %}
</title>
{% compress css %}
<link href="{% static 'appearance/packages/font-awesome-4.3.0/css/font-awesome.min.css' %}" media="screen" rel="stylesheet" type="text/css" />

View File

@@ -6,7 +6,7 @@
{% load common_tags %}
{% load autoadmin_tags %}
{% block title %}{% trans 'Login' %}{% endblock %}
{% block base_title %}{% trans 'Login' %}{% endblock %}
{% block project_name %}{% endblock %}