-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(actor-sheet and templates): added, deleted and renamed some file…
…s related to templates all new templates and tabs still in basic version, they need more work in this point, but they work :D
- Loading branch information
1 parent
c130755
commit c4bd784
Showing
7 changed files
with
88 additions
and
31 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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<section class="grid grid-2col"> | ||
<aside class="sidebar"> | ||
<ol class="items-list"> | ||
<li class="item flexrow items-header"> | ||
<div class="item-name">Name</div> | ||
<div class="item-formula">Roll Formula</div> | ||
<div class="item-controls"> | ||
<a class="item-control item-create" title="Create item" data-type="item"><i class="fas fa-plus"></i> Add item</a> | ||
</div> | ||
</li> | ||
{{#each gear as |item id|}} | ||
<li class="item flexrow" data-item-id="{{item._id}}"> | ||
<div class="item-name"> | ||
<div class="item-image"> | ||
<a class="rollable" data-roll-type="item"><img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/></a> | ||
</div> | ||
<h4>{{item.name}}</h4> | ||
</div> | ||
<div class="item-formula item-prop">{{item.data.formula}}</div> | ||
<div class="item-controls"> | ||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a> | ||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a> | ||
</div> | ||
</li> | ||
{{/each}} | ||
</ol> | ||
</aside> | ||
<section class="main grid-span-1"> | ||
|
||
{{>"systems/ordemparanormal/templates/actor/parts/actor-skills.html"}} | ||
|
||
<ol class="items-list"> | ||
<li class="item flexrow items-header"> | ||
<div class="item-name">Name</div> | ||
<div class="item-formula">Roll Formula</div> | ||
<div class="item-controls"> | ||
<a class="item-control item-create" title="Create item" data-type="item"><i class="fas fa-plus"></i> Add item</a> | ||
</div> | ||
</li> | ||
{{#each protection as |item id|}} | ||
<li class="item flexrow" data-item-id="{{item._id}}"> | ||
<div class="item-name"> | ||
<div class="item-image"> | ||
<a class="rollable" data-roll-type="item"><img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/></a> | ||
</div> | ||
<h4>{{item.name}}</h4> | ||
</div> | ||
<div class="item-formula item-prop">{{item.data.formula}}</div> | ||
<div class="item-controls"> | ||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a> | ||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a> | ||
</div> | ||
</li> | ||
{{/each}} | ||
</ol> | ||
</section> | ||
</section> |
File renamed without changes.
File renamed without changes.