Merge pull request #107 from ludw/master

Fixed small issue in modellistview
This commit is contained in:
Daniel Greenfeld 2013-05-19 15:45:57 -07:00
commit 83eb8da62a

View file

@ -36,10 +36,12 @@
</thead>
<tbody>
{% for obj in object_list %}
<td><input type="checkbox"></td>
<td>
<a href="{% url view|admin2_urlname:'update' pk=obj.pk %}">{{ obj }}</a>
</td>
<tr>
<td><input type="checkbox"></td>
<td>
<a href="{% url view|admin2_urlname:'update' pk=obj.pk %}">{{ obj }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>