Changeset 1791
- Timestamp:
- 12/28/05 17:32:56 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/templates/admin/change_list_results.html
r1434 r1791 1 {% if results %} 1 2 <table cellspacing="0"> 2 3 <thead> … … 8 9 </tr> 9 10 </thead> 11 <tbody> 10 12 {% for result in results %} 11 13 <tr class="{% cycle row1,row2 %}">{% for item in result %}{{ item }}{% endfor %}</tr> 12 14 {% endfor %} 15 </tbody> 13 16 </table> 17 {% endif %} django/trunk/django/contrib/admin/templates/admin/search_form.html
r1475 r1791 3 3 {% if cl.lookup_opts.admin.search_fields %} 4 4 <div id="toolbar"><form id="changelist-search" action="" method="get"> 5 <label><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" /></label> 5 <div><!-- DIV needed for valid HTML --> 6 <label><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" alt="Search" /></label> 6 7 <input type="text" size="40" name="{{ search_var }}" value="{{ cl.query|escape }}" id="searchbar" /> 7 8 <input type="submit" value="{% trans 'Go' %}" /> … … 12 13 {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0|escape }}" value="{{ pair.1|escape }}"/>{% endifnotequal %} 13 14 {% endfor %} 15 </div> 14 16 </form></div> 15 17 <script type="text/javascript">document.getElementById("searchbar").focus();</script>
