Ticket #3579: all.2.patch
File all.2.patch, 3.6 KB (added by , 17 years ago) |
---|
-
D:/program/Python24/Lib/site-packages/django-svn/django/contrib/admin/templates/admin/auth/user/change_password.html
16 16 </div> 17 17 {% endif %}{% endblock %} 18 18 {% block content %}<div id="content-main"> 19 <form action="{{ form_url }}"method="post" id="{{ opts.module_name }}_form">{% block form_top %}{% endblock %}19 <form {% if form_url %}action="{{ form_url }}" {% endif %}method="post" id="{{ opts.module_name }}_form">{% block form_top %}{% endblock %} 20 20 <div> 21 21 {% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %} 22 22 {% if form.error_dict %} -
D:/program/Python24/Lib/site-packages/django-svn/django/contrib/admin/templates/admin/change_form.html
23 23 </ul> 24 24 {% endif %}{% endif %} 25 25 {% endblock %} 26 <form {% if has_file_field %}enctype="multipart/form-data" {% endif %} action="{{ form_url }}"method="post" id="{{ opts.module_name }}_form">{% block form_top %}{% endblock %}26 <form {% if has_file_field %}enctype="multipart/form-data" {% endif %}{% if form_url %}action="{{ form_url }}" {% endif %}method="post" id="{{ opts.module_name }}_form">{% block form_top %}{% endblock %} 27 27 <div> 28 28 {% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %} 29 29 {% if opts.admin.save_on_top %}{% submit_row %}{% endif %} -
D:/program/Python24/Lib/site-packages/django-svn/django/contrib/admin/templates/admin/change_list_results.html
2 2 <table cellspacing="0"> 3 3 <thead> 4 4 <tr> 5 {% for header in result_headers %}<th{{ header.class_attrib }}> 5 {% for header in result_headers %} 6 {% if header.class_attrib %}<th{{ header.class_attrib }}>{% else %}<th>{% endif %} 6 7 {% if header.sortable %}<a href="{{ header.url }}">{% endif %} 7 8 {{ header.text|capfirst }} 8 9 {% if header.sortable %}</a>{% endif %}</th>{% endfor %} -
D:/program/Python24/Lib/site-packages/django-svn/django/contrib/admin/templates/admin/edit_inline_tabular.html
4 4 <thead><tr> 5 5 {% for fw in bound_related_object.field_wrapper_list %} 6 6 {% if fw.needs_header %} 7 <th{{ fw.header_class_attribute }}>{{ fw.field.verbose_name|capfirst|escape }}</th> 7 {% if fw.header_class_attribute %}<th{{ fw.header_class_attribute }}>{% else %}<th>{% endif %} 8 {{ fw.field.verbose_name|capfirst|escape }}</th> 8 9 {% endif %} 9 10 {% endfor %} 10 11 </tr></thead>