Projet

Général

Profil

0001-misc-update-appbar-actions-to-new-markup-25999.patch

Frédéric Péters, 31 août 2018 17:12

Télécharger (1,93 ko)

Voir les différences:

Subject: [PATCH] misc: update appbar actions to new markup (#25999)

 hobo/environment/templates/environment/service_form.html     | 1 -
 hobo/profile/templates/profile/attributedefinition_list.html | 2 ++
 hobo/theme/templates/hobo/theme_home.html                    | 2 ++
 3 files changed, 4 insertions(+), 1 deletion(-)
hobo/environment/templates/environment/service_form.html
3 3

  
4 4
{% block appbar %}
5 5
<h2>{{ model_name }}</h2>
6
<span><a href="./">{% trans 'Back to settings' %}</a></span>
7 6
{% endblock %}
8 7

  
9 8
{% block content %}
hobo/profile/templates/profile/attributedefinition_list.html
8 8

  
9 9
{% block appbar %}
10 10
  <h2>{% trans 'User Profile' %}</h2>
11
  <span class="actions">
11 12
  <a rel="popup" href="{% url 'profile-add-attribute' %}">{% trans 'New attribute' %}</a>
13
  </span>
12 14
{% endblock %}
13 15

  
14 16
{% block content %}
hobo/theme/templates/hobo/theme_home.html
8 8

  
9 9
{% block appbar %}
10 10
  <h2>{% trans 'Theme' %}</h2>
11
  <span class="actions">
11 12
  <a rel="popup" href="{% url 'theme-options' %}">{% trans 'Options' %}</a>
13
  </span>
12 14
{% endblock %}
13 15

  
14 16
{% block content %}
15
-