All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 lines
1.6 KiB

<div class="form-group">
<label for="{{fieldIdPrefix}}uuid">{{localize fields.uuid.label}}</label>
<div class="form-fields">
<input type="text" name="system.rules.{{index}}.uuid" id="{{fieldIdPrefix}}uuid" value="{{rule.uuid}}" />
{{#if granted}}
<a class="content-link" data-uuid="{{granted.uuid}}">
<img src="{{granted.img}}"/> {{granted.name}}
</a>
{{/if}}
</div>
</div>
<div class="form-group">
<label for="{{fieldIdPrefix}}predicate">{{localize fields.predicate.label}}</label>
<div class="form-fields">
<input
type="text"
name="system.rules.{{index}}.predicate"
id="{{fieldIdPrefix}}predicate"
value="{{json rule.predicate}}"
placeholder="[ ]"
/>
</div>
</div>
<div class="form-group">
<label for="{{fieldIdPrefix}}allow-duplicates">{{localize fields.allowDuplicate.label}}</label>
<div class="form-fields">
<input
type="checkbox"
name="system.rules.{{index}}.allowDuplicate"
id="{{fieldIdPrefix}}allow-duplicates"
{{checked rule.allowDuplicate}}
/>
</div>
</div>
<div class="form-group">
<label for="{{fieldIdPrefix}}reevaluate-on-update">{{localize fields.reevaluateOnUpdate.label}}</label>
<div class="form-fields">
<input
type="checkbox"
name="system.rules.{{index}}.reevaluateOnUpdate"
id="{{fieldIdPrefix}}reevaluate-on-update"
{{checked rule.reevaluateOnUpdate}}
/>
</div>
</div>