Django

Code

root/django/trunk/django/contrib/admin/templates/admin/edit_inline_stacked.html

Revision 7294, 0.7 kB (checked in by mtredinnick, 4 months ago)

Added "svn:eol-style native" to every text file in the tree (*.txt, *.html,
*.py, *.xml and AUTHORS, etc). Added "svn:ignore *.pyc" to some directories in
tests/regressiontests/ that were previously missing it.

Fixed #6545, #6801.

  • Property svn:eol-style set to native
Line 
1 {% load admin_modify %}
2 <fieldset class="module aligned">
3    {% for fcw in bound_related_object.form_field_collection_wrappers %}
4       <h2>{{ bound_related_object.relation.opts.verbose_name|capfirst }}&nbsp;#{{ forloop.counter }}</h2>
5       {% if bound_related_object.show_url %}{% if fcw.obj.original %}
6       <p><a href="/r/{{ fcw.obj.original.content_type_id }}/{{ fcw.obj.original.id }}/">View on site</a></p>
7       {% endif %}{% endif %}
8       {% for bound_field in fcw.bound_fields %}
9          {% if bound_field.hidden %}
10             {% field_widget bound_field %}
11          {% else %}
12             {% admin_field_line bound_field %}
13          {% endif %}
14       {% endfor %}
15     {% endfor %}
16 </fieldset>
Note: See TracBrowser for help on using the browser.