{% extends 'base.html' %} {% block content %} Update Crop Translation {% include 'partials/_messages.html' %} {% csrf_token %} Translation Details Crop {% for c in crop_list %} {% if c.id == crop_translation.crop_id %} {{c.name}} {% else %} {{c.name}} {% endif %} {% endfor %} Language {% for l in language_list %} {% if l.id == crop_translation.language_id %} {{l.name}} ({{l.code}}) {% else %} {{l.name}} ({{l.code}}) {% endif %} {% endfor %} Translation Name Cancel Update {% endblock %}