diff --git a/src/postorius/static/postorius/css/style.css b/src/postorius/static/postorius/css/style.css index dfc317e..5037a5e 100755 --- a/src/postorius/static/postorius/css/style.css +++ b/src/postorius/static/postorius/css/style.css @@ -256,3 +256,14 @@ } span.more_info:hover span {margin: 2em; background: #ffffff; z-index:6;} + +.rotate { + transform:rotate(-90deg); + -webkit-transform: rotate(-90deg); /* Webkit/Safari/Chrome */ + -moz-transform: rotate(-90deg); /* Firefox */ + -ms-transform: rotate(-90deg); /* IE */ + -o-transform: rotate(-90deg); /* Opera */ + + /* Internet Explorer */ + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} diff --git a/src/postorius/templates/postorius/base.html b/src/postorius/templates/postorius/base.html index 5548534..7616bf3 100644 --- a/src/postorius/templates/postorius/base.html +++ b/src/postorius/templates/postorius/base.html @@ -25,10 +25,11 @@
  • Lists
  • {% if user.is_authenticated %}
  • {% trans "To Do" %}
  • +
  • Settings
  • {% endif %} {% if user.is_superuser %}
  • Users
  • -
  • Settings
  • +
  • Site Settings
  • {% endif %}
    diff --git a/src/postorius/templates/postorius/menu/subscriptions.html b/src/postorius/templates/postorius/menu/subscriptions.html index a664d75..b0376de 100644 --- a/src/postorius/templates/postorius/menu/subscriptions.html +++ b/src/postorius/templates/postorius/menu/subscriptions.html @@ -5,11 +5,6 @@ {% if fqdn_listname %} {% trans "Subscriptions" %}
    diff --git a/src/postorius/templates/postorius/user_mailmansettings.html b/src/postorius/templates/postorius/user_mailmansettings.html index 7b2f8cc..89f4ea4 100644 --- a/src/postorius/templates/postorius/user_mailmansettings.html +++ b/src/postorius/templates/postorius/user_mailmansettings.html @@ -60,9 +60,9 @@ {% trans "Setting" %} {% trans "Description" %} {% trans "Set all" %} - list1@example.com - kumquat@example.com - starfruit@example.com + list1@example.com + kumquat@example.com + starfruit@example.com {% trans "Mail delivery" %} ({{ preference }}) diff --git a/src/postorius/templates/postorius/user_tasks.html b/src/postorius/templates/postorius/user_tasks.html index 1a50a47..06d0bfe 100644 --- a/src/postorius/templates/postorius/user_tasks.html +++ b/src/postorius/templates/postorius/user_tasks.html @@ -3,7 +3,6 @@ {% load i18n %} {% block main %} - {% include 'postorius/menu/user_nav.html' %}

    {% trans "To Do" %}

    There are no pending tasks at the present time.

    {% endblock main %}