- {% if item %}
- <p class="item_descrip">
- {% if item.title %}<strong>Title:</strong> {{item.title}}<br/>{% endif %}
- {% if item.synopsis %}<strong>Synopsis:</strong> {{item.synopsis}}<br/>{% endif %}
- {% if item.producer %}<strong>Producer:</strong> {{item.producer}}<br/>{% endif %}
- {% if item.music %}<strong>Music:</strong> {{item.music}}<br/>{% endif %}
- {% if item.runtime_minutes %}<strong>Runtime:</strong> {{item.runtime_minutes}} minutes<br/>{% endif %}
- {% if item.format %}<strong>Format:</strong> {{item.format}}<br/>{% endif %}
- {% if item.region %}<strong>Region:</strong> {{item.region}}<br/>{% endif %}
- {% if item.sound %}<strong>Sound:</strong> {{item.sound}}<br/>{% endif %}
- {% if item.language %}<strong>Language(s):</strong> {{item.language}}<br/>{% endif %}
- {% if item.captioning %}<strong>Captioning:</strong> {{item.captioning}}<br/>{% endif %}
- {% if item.genre %}<strong>Genre:</strong> {{item.genre}}<br/>{% endif %}
- </p>
- {% endif %}
|