# HG changeset patch # User Alexandre Segura # Date 1492428719 -7200 # Node ID 287af082244584a61f1ccc1978b4727fac30f56d # Parent 0a7ea508098ad99b826c948d31387d7603b3b330 Fix URL scheme for user pages. diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/detail_annotation.html --- a/src/iconolab/templates/iconolab/detail_annotation.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/detail_annotation.html Mon Apr 17 13:31:59 2017 +0200 @@ -33,7 +33,7 @@
-

Annotation créée par {{ annotation.author.username }}

+

Annotation créée par {{ annotation.author.username }}

Titre : {{ annotation.current_revision.title }}

Description : {{ annotation.current_revision.description }}

{% if tags_data != "[]" %} @@ -83,7 +83,7 @@

{{ comment.comment }}


{% if comment.allow_thread and user.is_authenticated %}{% endif %} -
{{ comment.submit_date|date:"d/m/Y" }} à {{ comment.submit_date|time:"H:i" }} -  {{comment.name}}
+
{{ comment.submit_date|date:"d/m/Y" }} à {{ comment.submit_date|time:"H:i" }} -  {{comment.name}}
{% if comment.revision or comment.metacategories.count > 0 %} - {% endif %} {% if comment.revision %} diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/detail_annotation_readonly.html --- a/src/iconolab/templates/iconolab/detail_annotation_readonly.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/detail_annotation_readonly.html Mon Apr 17 13:31:59 2017 +0200 @@ -31,7 +31,7 @@
-

Annotation créée par {{ annotation.author.username }}

+

Annotation créée par {{ annotation.author.username }}

Titre : {{ annotation.current_revision.title }}

Description : {{ annotation.current_revision.description }}

{% if tags_data != "[]" %} diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_annotations.html --- a/src/iconolab/templates/iconolab/user_annotations.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_annotations.html Mon Apr 17 13:31:59 2017 +0200 @@ -21,35 +21,35 @@ {% if user_annotations.has_previous or user_annotations.has_next %}
    {% if user_annotations.has_previous %}
  • - +
  • {% endif %} {% for page in user_annotations.paginator.page_range %} {% endfor %} {% if user_annotations.has_next %}
  • - +
  • diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_base.html --- a/src/iconolab/templates/iconolab/user_base.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_base.html Mon Apr 17 13:31:59 2017 +0200 @@ -9,11 +9,11 @@
    - Activité - Annotations diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_collection_admin.html --- a/src/iconolab/templates/iconolab/user_collection_admin.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_collection_admin.html Mon Apr 17 13:31:59 2017 +0200 @@ -9,7 +9,7 @@ {% load notifications_tags %} {% block content %} -
    +

    Tableau de bord - Fonds {{collection.verbose_name}}

    Filtres et tri

    diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_collections.html --- a/src/iconolab/templates/iconolab/user_collections.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_collections.html Mon Apr 17 13:31:59 2017 +0200 @@ -5,7 +5,7 @@ {% for collection in profile_user.profile.managed_collections.all %}

    {{collection.verbose_name}}

    {% endfor %} {% endblock %} diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_commented.html --- a/src/iconolab/templates/iconolab/user_commented.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_commented.html Mon Apr 17 13:31:59 2017 +0200 @@ -9,8 +9,8 @@ {% load notifications_tags %} {% block content %} -
    -

    {{profile_user.username}}: Annotations commentées Retour au profil

    +
    +

    {{profile_user.username}}: Annotations commentées Retour au profil


    {% if not user_commented_annotations %}

    Aucune annotation à afficher

    @@ -23,36 +23,36 @@ {% if user_commented_annotations.has_previous or user_commented_annotations.has_next %}
      {% if user_commented_annotations.has_previous %}
    • - +
    • {% endif %} {% for page in user_commented_annotations.paginator.page_range %} {% endfor %} {% if user_commented_annotations.has_next %}
    • - +
    • diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_contributed.html --- a/src/iconolab/templates/iconolab/user_contributed.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_contributed.html Mon Apr 17 13:31:59 2017 +0200 @@ -9,8 +9,8 @@ {% load notifications_tags %} {% block content %} -
      -

      {{profile_user.username}}: Toutes les contributions Retour au profil

      +
      +

      {{profile_user.username}}: Toutes les contributions Retour au profil


      {% if not user_contributed_annotations %}

      Aucune annotation à afficher

      @@ -23,36 +23,36 @@ {% if user_contributed_annotations.has_previous or user_contributed_annotations.has_next %}
        {% if user_contributed_annotations.has_previous %}
      • - +
      • {% endif %} {% for page in user_contributed_annotations.paginator.page_range %} {% endfor %} {% if user_contributed_annotations.has_next %}
      • - +
      • diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/iconolab/user_home.html --- a/src/iconolab/templates/iconolab/user_home.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/iconolab/user_home.html Mon Apr 17 13:31:59 2017 +0200 @@ -20,7 +20,7 @@ {% include "partials/user_pages/annotations_created_panel.html" with annotation=annotation user=profile_user %} {% endfor %}
      - Voir toutes les annotations + Voir toutes les annotations {% endif %}
      @@ -42,7 +42,7 @@ {% include "partials/user_pages/annotations_contributed_panel.html" with annotation_data=annotation_data user=profile_user %} {% endfor %}
    • - Voir toutes les contributions + Voir toutes les contributions
    {% endif %} @@ -63,7 +63,7 @@ {% include "partials/user_pages/annotations_commented_panel.html" with annotation_data=annotation_data user=profile_user %} {% endfor %}
  • - Voir toutes les annotations commentées + Voir toutes les annotations commentées
{% endif %} diff -r 0a7ea508098a -r 287af0822445 src/iconolab/templates/partials/header.html --- a/src/iconolab/templates/partials/header.html Mon Apr 17 12:39:55 2017 +0200 +++ b/src/iconolab/templates/partials/header.html Mon Apr 17 13:31:59 2017 +0200 @@ -21,7 +21,7 @@