diff --git a/src/accounts/templates/accounts/signup-form.html b/src/accounts/templates/accounts/signup-form.html index 4ddb62a..7fe5b97 100644 --- a/src/accounts/templates/accounts/signup-form.html +++ b/src/accounts/templates/accounts/signup-form.html @@ -3,73 +3,71 @@ {% load i18n %} {% block main-content %} -
-

{% trans "Sign up" %}

+

{% trans "Sign up" %}

- {% if form.errors %} -
- {% trans "Please correct the errors below and try again." %} -
- {% endif %} +{% if form.errors %} +
+ {% trans "Please correct the errors below and try again." %} +
+{% endif %} -
-
- -
- user -
-

- {% trans "Add an avatar to your account using" %} Gravatar -

-
+
+
+ +
+ user +
+

+ {% trans "Add an avatar to your account using" %} Gravatar +

+
-

- -

+

+ +

-
- {% csrf_token %} + + {% csrf_token %} -
-
-
- {% trans "Personal Information" %} - {% render_form_field form.first_name %} - {% render_form_field form.last_name %} - {% render_form_field form.email %} - {% render_form_field form.username %} -
+
+
+
+ {% trans "Personal Information" %} + {% render_form_field form.first_name %} + {% render_form_field form.last_name %} + {% render_form_field form.email %} + {% render_form_field form.username %} +
-
- {% trans "Others" %} - {% render_form_field form.twitter %} - {% render_form_field form.facebook %} - {% render_form_field form.google_talk %} - {% render_form_field form.webpage %} -
-
+
+ {% trans "Others" %} + {% render_form_field form.twitter %} + {% render_form_field form.facebook %} + {% render_form_field form.google_talk %} + {% render_form_field form.webpage %} +
+
-
-
- {% trans "Professionals Information" %} - {% render_form_field form.institution %} - {% render_form_field form.role %} -
+
+
+ {% trans "Professionals Information" %} + {% render_form_field form.institution %} + {% render_form_field form.role %} +
-
- {% trans "Subscribe to mail lists" %} -
- {% render_form_field form.lists %} -
-
-
+
+ {% trans "Subscribe to mail lists" %} +
+ {% render_form_field form.lists %} +
+
+
-
- -
+
+
- -
+
+ {% endblock %} diff --git a/src/colab/static/css/screen.css b/src/colab/static/css/screen.css index d3dcef0..4e4622a 100644 --- a/src/colab/static/css/screen.css +++ b/src/colab/static/css/screen.css @@ -156,3 +156,28 @@ fieldset>legend { .blog-post-item .tags { margin-top: 1em; } + +.plus { + border: 1px dotted #ddd; + margin: 0; +} + +.plus span { + vertical-align: middle; + height: 40px; + line-height: 40px; + font-size: 150%; + font-weight: bold; + color: #0a0; +} + +.plus img { + vertical-align: middle; + cursor: pointer; + margin-top: 8px; + margin-right: 20px; +} + +.plus img:hover { + opacity: 0.8; +} diff --git a/src/super_archives/templates/message-thread.html b/src/super_archives/templates/message-thread.html index 2a44407..c8eb5ee 100644 --- a/src/super_archives/templates/message-thread.html +++ b/src/super_archives/templates/message-thread.html @@ -2,77 +2,83 @@ {% load i18n %} {% load append_to_get %} {% block main-content %} -
+

{{ first_msg.subject_clean }}

-
-
- -
-
-

{% trans "Order by" %}:

-
    -
  • {% trans "Votes" %}
  • -
  • {% trans "Date" %}
  • +
    +

    {% trans "Order by" %}:

    + -
    - -

    {% trans "Statistics:" %}

    - -
      -
    • {% trans "started at" %} -

      {{ first_msg.received_time|timesince }} {% trans "ago" %}

      -
    • -
    • {% trans "viewed" %} -

      {{ pagehits }} {% trans "times" %}

      -
    • -
    • {% trans "answered" %} -

      {{ emails|length }} {% trans "times" %}

      -
    • -
    • {% trans "voted" %} -

      {{ total_votes }} {% trans "times" %}

      -
    • +
       
      + +

      {% trans "Statistics:" %}

      + +
        +
      • + {% trans "started at" %} +
      • +
        {{ first_msg.received_time|timesince }} {% trans "ago" %}
        +
      • + {% trans "viewed" %} +
      • +
        {{ pagehits }} {% trans "times" %}
        +
      • + {% trans "answered" %} +
      • +
        {{ emails|length }} {% trans "times" %}
        +
      • + {% trans "voted" %} +
      • +
        {{ total_votes }} {% trans "times" %}
      -
    - + + + - -{% endblock %} + +
+{% endblock %} -- libgit2 0.21.2