Browse Source

add titles in customers search and tarifs

devel
Dmitry Novikov 7 years ago
parent
commit
87cad90be6
  1. 4
      new_customers/templates/new_customers/potentialsubscriber_detail.html
  2. 1
      new_customers/templates/new_customers/potentialsubscriber_list.html
  3. 2
      searchapp/templates/searchapp/index.html
  4. 8
      tariff_app/templates/tariff_app/editTarif.html
  5. 2
      tariff_app/templates/tariff_app/ext.html
  6. 8
      tariff_app/templates/tariff_app/periodic_pays/add_edit.html
  7. 2
      tariff_app/templates/tariff_app/service_users.html

4
new_customers/templates/new_customers/potentialsubscriber_detail.html

@ -1,6 +1,10 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
{% block title %}
{{ object.fio|default:_('Not assigned') }}
{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

1
new_customers/templates/new_customers/potentialsubscriber_list.html

@ -1,6 +1,7 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n %}
{% block title %}{% trans 'Potential subscribers' %}{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">

2
searchapp/templates/searchapp/index.html

@ -1,6 +1,8 @@
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans 'Search' %}{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

8
tariff_app/templates/tariff_app/editTarif.html

@ -1,6 +1,14 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
{% block title %}
{% if tarif_id == 0 %}
{% trans 'Add' %}
{% else %}
{{ form.title.value }}
{% endif %}
{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

2
tariff_app/templates/tariff_app/ext.html

@ -1,6 +1,8 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n %}
{% block title %}{% trans 'Services' %}{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

8
tariff_app/templates/tariff_app/periodic_pays/add_edit.html

@ -1,6 +1,14 @@
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
{% load i18n bootstrap3 %}
{% block title %}
{% if pay_instance %}
{% trans 'Change periodic pay' %}
{% else %}
{% trans 'Add new periodic pay' %}
{% endif %}
{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

2
tariff_app/templates/tariff_app/service_users.html

@ -1,6 +1,8 @@
{% extends 'base.html' %}
{% load i18n dpagination %}
{% block title %}{% trans 'Service users' %}{% endblock %}
{% block breadcrumb %}
<ol class="breadcrumb">
<li><span class="glyphicon glyphicon-home"></span></li>

Loading…
Cancel
Save