diff --git a/pinaxcon/templates/site_base.html b/pinaxcon/templates/site_base.html index f5511555..cd31b720 100644 --- a/pinaxcon/templates/site_base.html +++ b/pinaxcon/templates/site_base.html @@ -47,8 +47,10 @@ {% block scripts %} {% include "_scripts.html" %} + {% block extra_script %}{% endblock %} {% endblock %} + {% block extra_body_base %} {% analytics %} {% block extra_body %}{% endblock %} diff --git a/pinaxcon/templates/symposion/reviews/_review_table.html b/pinaxcon/templates/symposion/reviews/_review_table.html index ad3378e5..b0df383a 100644 --- a/pinaxcon/templates/symposion/reviews/_review_table.html +++ b/pinaxcon/templates/symposion/reviews/_review_table.html @@ -6,6 +6,7 @@ {% trans "Speaker / Title" %} {% trans "Category" %} + {% trans "Score" %} {% trans "+2" %} {% trans "+1" %} {% trans "-1" %} @@ -26,6 +27,7 @@ {{ proposal.track }} {{ proposal.comment_count }} + {{ proposal.score }} {{ proposal.plus_two }} {{ proposal.plus_one }} {{ proposal.minus_one }} diff --git a/pinaxcon/templates/symposion/reviews/review_detail.html b/pinaxcon/templates/symposion/reviews/review_detail.html index 2751a27c..5f5e6754 100644 --- a/pinaxcon/templates/symposion/reviews/review_detail.html +++ b/pinaxcon/templates/symposion/reviews/review_detail.html @@ -94,7 +94,7 @@
{% if review_form %} -
+ {% trans "Submit Review" %}

Enter your vote and any comment to go along with it. You can revise your vote or comment multiple times with an existing vote (your previously recorded score will be replaced during calculations). Your vote and comments are not public and will only be viewable by other reviewers.

{% csrf_token %} @@ -177,11 +177,15 @@ $(".nav-tabs a[href='" + location.hash + "']").click(); }); - $('#.nav-tabs a[data-toggle="tab"]').on('shown', function (e) { + $('.nav-tabs a[data-toggle="tab"]').on('shown', function (e) { if (History.enabled) { History.pushState(null, null, $(e.target).attr("href")); } }); + + if (window.location.hash !== '') { + $('.nav-tabs a[href="' + window.location.hash + '"]').tab('show') + } });