mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-16 13:41:07 +01:00
Added homebrew settings without action handling for now
This commit is contained in:
parent
e38ebfab29
commit
a65719b314
11 changed files with 478 additions and 5 deletions
22
templates/settings/components/settings-item-line.hbs
Normal file
22
templates/settings/components/settings-item-line.hbs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue