Projet

Général

Profil

0001-manager-don-t-use-popups-to-add-edit-announces-12873.patch

Frédéric Péters, 18 août 2016 15:42

Télécharger (1,29 ko)

Voir les différences:

Subject: [PATCH] manager: don't use popups to add/edit announces (#12873)

 corbo/templates/corbo/manage.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
corbo/templates/corbo/manage.html
24 24
</div>
25 25
<div id="management">
26 26
  <h4>{% trans "Announces" %}</h4>
27
  <span><a class="icon add" href="{% url "add_announce" %}" rel="popup">{% trans "add announce" %}</a></span>
27
  <span><a class="icon add" href="{% url "add_announce" %}">{% trans "add announce" %}</a></span>
28 28
<ul>
29 29
{% for obj in object_list %}
30 30
<li class='{% cycle 'bluesky' '' %}'>
......
46 46
    {% endblocktrans %}
47 47
  </div>
48 48
  <div class="actions">
49
    <span><a class="icon edit" href="{% url 'edit_announce' obj.id %}" rel="popup"></a></span>
49
    <span><a class="icon edit" href="{% url 'edit_announce' obj.id %}"></a></span>
50 50
    <span><a class="icon delete" href="{% url 'delete_announce' obj.id %}" rel="popup"></a></span>
51 51
  </div>
52 52
  <div class="announce">
53
-