dh-stream-overlay/templates/settings-app.hbs

34 lines
No EOL
1.3 KiB
Handlebars

<div class="stream-overlay-settings">
<p class="notes">{{localize "DH_STREAM_OVERLAY.Settings.Instructions"}}</p>
<div class="form-group">
<label>{{localize "DH_STREAM_OVERLAY.Settings.PartyActor"}}</label>
<div class="drop-zone" data-dtype="Actor">
{{#if actor}}
<div class="actor-data">
<img src="{{actor.img}}" title="{{actor.name}}" width="36" height="36" />
<span class="actor-name">{{actor.name}}</span>
<button type="button" class="clear-actor" title="{{localize " Delete"}}">
<i class="fas fa-trash"></i>
</button>
</div>
{{else}}
<div class="placeholder">
<i class="fas fa-user"></i>
<span>{{localize "DH_STREAM_OVERLAY.Settings.DropActorHere"}}</span>
</div>
{{/if}}
<input type="hidden" name="partyActorUuid" value="{{actorUuid}}">
</div>
</div>
{{#if dsnInstalled}}
<div class="form-group">
<label>
<input type="checkbox" name="enableDSN" {{checked dsnEnabled}}>
Enable Dice So Nice Animations
</label>
<p class="notes">If enabled, 3D dice rolls will appear on the stream overlay.</p>
</div>
{{/if}}
</div>