{% extends 'django_tables2/table.html' %} {% load django_tables2 table_tags review_tags wagtailimages_tags i18n %} {% block table.tbody.row %} {% for column, cell in row.items %} {% if column.localize == None %}{{ cell }}{% else %}{% if column.localize %}{{ cell|localize }}{% else %}{{ cell|unlocalize }}{% endif %}{% endif %} {% endfor %} {% with investment=row.record %}
Investment Name
Investment Description
{{ investment.name }} {{ investment.description }}
{% endwith %} {% endblock %} {% block table.tbody.empty_text %} {{ table.empty_text }} {% endblock table.tbody.empty_text %} {% block pagination %} {% if table.page and table.paginator.num_pages > 1 %} {% endif %} {% endblock pagination %}