movie.inc 1.0 KB

123456789101112131415
  1. {% if item %}
  2. <p class="item_descrip">
  3. {% if item.title %}<strong>Title:</strong> {{item.title}}<br/>{% endif %}
  4. {% if item.synopsis %}<strong>Synopsis:</strong> {{item.synopsis}}<br/>{% endif %}
  5. {% if item.producer %}<strong>Producer:</strong> {{item.producer}}<br/>{% endif %}
  6. {% if item.music %}<strong>Music:</strong> {{item.music}}<br/>{% endif %}
  7. {% if item.runtime_minutes %}<strong>Runtime:</strong> {{item.runtime_minutes}} minutes<br/>{% endif %}
  8. {% if item.format %}<strong>Format:</strong> {{item.format}}<br/>{% endif %}
  9. {% if item.region %}<strong>Region:</strong> {{item.region}}<br/>{% endif %}
  10. {% if item.sound %}<strong>Sound:</strong> {{item.sound}}<br/>{% endif %}
  11. {% if item.language %}<strong>Language(s):</strong> {{item.language}}<br/>{% endif %}
  12. {% if item.captioning %}<strong>Captioning:</strong> {{item.captioning}}<br/>{% endif %}
  13. {% if item.genre %}<strong>Genre:</strong> {{item.genre}}<br/>{% endif %}
  14. </p>
  15. {% endif %}