Form goes here
{% for s in ships %}
{{ s.number }}
{{ s.date|date:"d, M, Y" }}
{{ s.ship_name_trans }}
{{ s.captain_trans }}
{{ s.owner_trans }}
{{ s.port }}
{{ s.country }}
{% for good in s.good_set.all %}
{{ good.description_string_trans }}
{{ good.no_of_packages }}
{{ good.weight }}
{% endfor %}
Total wt.: {{ s.total_weight }}
{% endfor %}