From f46603b38aa279a98051f87aed4c3fc4503d58f0 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 26 Apr 2013 15:36:56 +0200 Subject: [PATCH] postman: conversation mode by default --- teleforma/templates/postman/base.html | 6 +++--- teleforma/templates/teleforma/answer_form.html | 2 +- teleforma/templates/telemeta/base.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/teleforma/templates/postman/base.html b/teleforma/templates/postman/base.html index 99f23aee..401bc908 100644 --- a/teleforma/templates/postman/base.html +++ b/teleforma/templates/postman/base.html @@ -23,9 +23,9 @@
{% postman_unread as unread_count %}
diff --git a/teleforma/templates/teleforma/answer_form.html b/teleforma/templates/teleforma/answer_form.html index b39d1e73..a1fefffa 100644 --- a/teleforma/templates/teleforma/answer_form.html +++ b/teleforma/templates/teleforma/answer_form.html @@ -41,7 +41,7 @@ $(document).ready(function(){ var b2 = $('#save_button'); b2.unbind('click').click(function() { $(window).unbind('beforeunload'); - b1.unbind('click'); + b2.unbind('click'); $('#_AnswerForm').submit(); }); diff --git a/teleforma/templates/telemeta/base.html b/teleforma/templates/telemeta/base.html index fb053067..f7148c67 100644 --- a/teleforma/templates/telemeta/base.html +++ b/teleforma/templates/telemeta/base.html @@ -101,7 +101,7 @@ alt="logo" /> {% if user.is_authenticated %} -
  • {% trans "Contact us" %}{% if postman_unread_count %} ({{ postman_unread_count }}){% endif %}
  • +
  • {% trans "Contact us" %}{% if postman_unread_count %} ({{ postman_unread_count }}){% endif %}
  • {% if user.is_staff %}
  • {% trans "Users" %}
  • -- 2.39.5