比如,我想更改成2014-10-7 10:59
这个地方的模板是change_list_results.html里的,具体的代码就是
{% for result in results %}
{% if result.form.non_field_errors %}
<tr><td colspan="{{ result|length }}">{{ result.form.non_field_errors }}</td></tr>
{% endif %}
<tr class="{% cycle 'row1' 'row2' %}">{% for item in result %}{{ item }}{% endfor %}</tr>
{% endfor %}
完全不知道该如何定制。。。。。。