Fix places list not showing address and city
This commit is contained in:
parent
542a8c82e9
commit
11caac5fa9
1 changed files with 3 additions and 3 deletions
|
@ -3,9 +3,9 @@
|
|||
<table border="0" width="960px">
|
||||
{% for place in places_list %}
|
||||
<tr>
|
||||
<td>{{ place.name }}</td>
|
||||
<td>{{ team.address|default:'' }}</td>
|
||||
<td>{{ team.city.name|default:'' }}</td>
|
||||
<td width="20%">{{ place.name }}</td>
|
||||
<td width="40%">{{ place.address|default:'' }}</td>
|
||||
<td width="40%">{{ place.city|default:'' }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue