Initial
This commit is contained in:
14
resources/app/templates/dice/table-result.html
Normal file
14
resources/app/templates/dice/table-result.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<div class="table-draw" data-table-id="{{ table.id }}">
|
||||
{{#if description}}
|
||||
<div class="table-description">{{{description}}}</div>
|
||||
{{/if}}
|
||||
{{{ rollHTML }}}
|
||||
<ol class="table-results">
|
||||
{{#each results}}
|
||||
<li class="table-result flexrow" data-result-id="{{ this._id }}">
|
||||
<img class="result-image" src="{{this.icon}}"/>
|
||||
<div class="result-text">{{{this.text}}}</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ol>
|
||||
</div>
|
||||
Reference in New Issue
Block a user