{{#if simple}}
{{#each source.countdowns}}
{{this.name}}
{{this.progress.current}}/{{this.progress.max}}
{{/each}}
{{else}}
{{#if canCreate}}{{/if}} {{#if isGM}}{{/if}}
{{#each source.countdowns}}
{{this.name}} {{#if this.canEdit}}{{/if}} {{#if @root.isGM}}{{/if}}
{{formGroup @root.countdownFields.name name=(concat @root.base ".countdowns." @key ".name") value=this.name localize=true disabled=(not this.canEdit)}}
{{formGroup @root.countdownFields.progress.fields.current name=(concat @root.base ".countdowns." @key ".progress.current") value=this.progress.current localize=true disabled=(not this.canEdit)}} {{formGroup @root.countdownFields.progress.fields.max name=(concat @root.base ".countdowns." @key ".progress.max") value=this.progress.max localize=true disabled=(not this.canEdit)}}
{{formGroup @root.countdownFields.progress.fields.type.fields.value name=(concat @root.base ".countdowns." @key ".progress.type.value") value=this.progress.type.value localize=true localize=true disabled=(not this.canEdit)}}
{{/each}}
{{/if}}