-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from Havoclivekiller/master
Fix above 20 result
- Loading branch information
Showing
4 changed files
with
54 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,39 @@ | ||
<form autocomplete="off"> | ||
|
||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleConsistentDamage"}}</label> | ||
<input type="checkbox" name="optinalRuleConsistentDamage" {{checked optinalRuleConsistentDamage}} data-dtype="Boolean"/> | ||
</div> | ||
<hr> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleDieRollsMode"}}</label> | ||
<select name="optionalRuleDieRollsMode"> | ||
{{selectOptions dieRollsDropDrown selected=selectedDieRollsDropDrown localize=true}} | ||
</select> | ||
</div> | ||
<hr> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleInitiative"}}</label> | ||
<select name="optionalRuleInitiativeMode"> | ||
{{selectOptions initiativeMethodDropDrown selected=selectedInitiativeMethodDropDrown localize=true}} | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptinalRuleRollInitEachRound"}}</label> | ||
<input type="checkbox" name="optinalRuleRollInitEachRound" {{checked optinalRuleRollInitEachRound}} data-dtype="Boolean"/> | ||
</div> | ||
<footer class="sheet-footer flexrow"> | ||
<button type="submit" name="submit"> | ||
<i class="far fa-save"></i> | ||
{{localize "SETTINGS.Save"}} | ||
</button> | ||
<button type="button" data-action="reset"> | ||
<i class="fas fa-undo"></i> | ||
{{localize "SETTINGS.Reset"}} | ||
</button> | ||
</footer> | ||
</form> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleConsistentDamage"}}</label> | ||
<input type="checkbox" name="optinalRuleConsistentDamage" {{checked optinalRuleConsistentDamage}} data-dtype="Boolean" /> | ||
</div> | ||
<hr> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleDieRollsMode"}}</label> | ||
<select name="optionalRuleDieRollsMode"> | ||
{{selectOptions dieRollsDropDrown selected=selectedDieRollsDropDrown localize=true}} | ||
</select> | ||
</div> | ||
<hr> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptionalRuleInitiative"}}</label> | ||
<select name="optionalRuleInitiativeMode"> | ||
{{selectOptions initiativeMethodDropDrown selected=selectedInitiativeMethodDropDrown localize=true}} | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptinalRuleRollInitEachRound"}}</label> | ||
<input type="checkbox" name="optinalRuleRollInitEachRound" {{checked optinalRuleRollInitEachRound}} data-dtype="Boolean" /> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingOptinalRuleExceedsByFive"}}</label> | ||
<input type="checkbox" name="optinalRuleExceedsByFive" {{checked optinalRuleExceedsByFive}} data-dtype="Boolean" /> | ||
</div> | ||
<footer class="sheet-footer flexrow"> | ||
<button type="submit" name="submit"> | ||
<i class="far fa-save"></i> | ||
{{localize "SETTINGS.Save"}} | ||
</button> | ||
<button type="button" data-action="reset"> | ||
<i class="fas fa-undo"></i> | ||
{{localize "SETTINGS.Reset"}} | ||
</button> | ||
</footer> | ||
</form> |