49f844024a
Patch https://review.openstack.org/#/c/142802 adds a method of reducing duplication of page title logic, this patch applies that change to the project settings and the test panel views. Change-Id: I4af59bb3c051dcd24e46aacd91c49b8fcc6c10c7 Partial-Bug: 1413749
8 lines
181 B
HTML
8 lines
181 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "User Settings" %}{% endblock %}
|
|
|
|
{% block main %}
|
|
{% include "settings/user/_settings.html" %}
|
|
{% endblock %}
|