]> git.parisson.com Git - telemeta.git/commitdiff
fix item remarks
authoryomguy <yomguy@parisson.com>
Thu, 4 Oct 2012 09:16:51 +0000 (11:16 +0200)
committeryomguy <yomguy@parisson.com>
Thu, 4 Oct 2012 09:16:51 +0000 (11:16 +0200)
telemeta/templates/telemeta/mediaitem_detail.html
tools/dev/push.sh

index 27250f4635929ad71d4790787eaf5fa699d3017d..7dde985064d357aa63a14413ff80c03641e96272 100644 (file)
@@ -200,9 +200,6 @@ Item : <a href="{% url telemeta-item-detail item.public_id %}">{{ item }}</a>
 
             <dd>{% if item.recorded_from_date %}{{ item.recorded_from_date }}{% endif %}{% if item.recorded_from_date and item.recorded_to_date%} - {% endif %}{% if item.recorded_to_date %}{{ item.recorded_to_date}}{% endif %}</dd>
 
-            <dt>{% trans "Remarks" %}</dt>
-            <dd>{{ item.comment|html_line_break|safe }}</dd>
-
             {% if last_revision %}
             <dt>{% trans "Last modification" %}</dt>
             <dd>{{ last_revision.time }} {% if user.is_authenticated %}(<a href="{% url telemeta-profile-detail last_revision.user.username %}">{{last_revision.user.username}}</a>){% endif %}</dd>
@@ -283,6 +280,9 @@ Item : <a href="{% url telemeta-item-detail item.public_id %}">{{ item }}</a>
                 <dt>{% trans "Published references" %}</dt>
                 <dd>{{ item.external_references|html_line_break|safe }}</dd>
                 {% dl_field item "public_access_label" %}
+
+                <dt>{% trans "Remarks" %}</dt>
+                <dd>{{ item.comment|html_line_break|safe }}</dd>
             </dl>
         </div>
         {% endblock archive_data %}
index 6369c231e924bb8b984854d145d71421e29a0a8f..3b99d10b06f942ca616b715967e7708da2132a7f 100755 (executable)
@@ -4,13 +4,13 @@ git branch | tr -d \* | while read line
 do
     branch=${line/#\ }
 
-    echo "Push $branch to origin:"
     git push origin $branch
-
-    if [[ $branch == *master* ]]; then
-        echo "Push $branch to github:"
-        git push hub $branch
-    fi
+    git push hub $branch
+#    if [[ $branch == *master* ]]; then
+#        echo "Push $branch to github:"
+#        git push hub $branch
+#    fi
 
 done