mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
* Initial - Branch Test * reorganized path for better usage * something to mess with * registration things * . * root-template error * pushing in for the day * hook? * help? * . * implementation initial * updated comment * overcomplicated it * . * Added Formula select to view mode * . * Prettied up roll-results template * Removed SRD table descriptions * Improved draw result description css * Fallback for default dark dice * . --------- Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com>
17 lines
544 B
Handlebars
17 lines
544 B
Handlebars
<div class="table-draw" data-table-id="{{table.id}}">
|
|
{{#if flavor}}<div class="table-flavor">{{flavor}}</div>{{/if}}
|
|
|
|
{{#if description}}
|
|
<div class="table-description {{#if flavor}}flavor-spaced{{/if}}">{{{description}}}</div>
|
|
{{/if}}
|
|
{{{rollHTML}}}
|
|
|
|
<ul class="table-results">
|
|
{{#each results as |result|}}
|
|
<li class="flexrow" data-result-id="{{result.id}}">
|
|
<img src="{{result.icon}}">
|
|
{{{result.details}}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|