Fix a typo inserted into the template.
authorDiane Trout <diane@caltech.edu>
Sat, 2 Apr 2011 01:18:37 +0000 (18:18 -0700)
committerDiane Trout <diane@caltech.edu>
Sat, 2 Apr 2011 01:18:37 +0000 (18:18 -0700)
Apparently a {% trans "value" %} needs to be on one line.
This didn't show up until I'd provided the get_absolute_url reference
for flowcells.

htsworkflow/frontend/templates/admin/experiments/flowcell/change_form.html

index 2a44ee278eb0cb172517109462296ad9efef0c70..068fbfea4df63e453f2223dd1224e16c92987428 100644 (file)
@@ -5,8 +5,7 @@
   <ul class="object-tools">
     <li><a href="../../../../{{ app_label }}/started/{{ object_id }}/">{% trans "Started Email" %}</a></li>
     <li><a href="history/" class="historylink">{% trans "History" %}</a></li>
-  {% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans
- "View on site" %}</a></li>{% endif%}
+  {% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans "View on site" %}</a></li>{% endif%}
   </ul>
 {% endif %}{% endif %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}