Show shot 'trim end' in template, if available.

This commit is contained in:
2016-11-11 08:51:11 +01:00
parent a9b894ed77
commit 34a0bb3e2f

View File

@@ -89,6 +89,14 @@
.table-cell Trim Start .table-cell Trim Start
.table-cell(title="How many frames were trimmed off the start of the shot in the edit.") .table-cell(title="How many frames were trimmed off the start of the shot in the edit.")
| {{ shot.properties.trim_start_in_frames }} frames | {{ shot.properties.trim_start_in_frames }} frames
.table-row
.table-cell Trim End
.table-cell(title="How many frames were trimmed off the end of the shot in the edit.")
| {% if shot.properties.trim_end_in_frames is none %}
span.hint no data available
| {% else %}
| {{ shot.properties.trim_end_in_frames }} frames
| {% endif %}
.table-row .table-row
.table-cell Duration in Edit .table-cell Duration in Edit
.table-cell(title="Duration of the visible part of this shot.") .table-cell(title="Duration of the visible part of this shot.")