Browse Source

Remove None when Data de Nascimento is not given in Dependentes

pull/202/head
Eduardo Calil 9 years ago
parent
commit
2048b6ed1d
  1. 2
      templates/parlamentares/parlamentares_dependentes.html

2
templates/parlamentares/parlamentares_dependentes.html

@ -19,7 +19,7 @@
<tr>
<td><a href="{% url 'parlamentares_dependentes_edit' parlamentar.id d.id %}">{{d.nome}}</a></td>
<td>{{d.tipo }}</td>
<td>{{d.data_nascimento}}</td>
<td>{{d.data_nascimento|default_if_none:""}}</td>
</tr>
{% endfor %}
</table>

Loading…
Cancel
Save