mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Fixed up downtime dialogs and data model * Added homebrew settings without action handling for now * Added NrChoices to homebrew
22 lines
No EOL
567 B
Handlebars
22 lines
No EOL
567 B
Handlebars
<div class="settings-item">
|
|
<div class="settings-sub-item">
|
|
<img src="{{this.img}}" />
|
|
<div>{{this.name}}</div>
|
|
</div>
|
|
<div class="settings-sub-item">
|
|
<a
|
|
data-action="editItem"
|
|
data-type="{{this.type}}"
|
|
data-id="{{this.id}}"
|
|
>
|
|
<i class="fa-solid fa-globe"></i>
|
|
</a>
|
|
<a
|
|
data-action="removeItem"
|
|
data-type="{{this.type}}"
|
|
data-id="{{this.id}}"
|
|
>
|
|
<i class='fas fa-trash'></i>
|
|
</a>
|
|
</div>
|
|
</div> |