mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 03:30:25 +00:00
challenges: rename party.html to groups.html
This commit is contained in:
parent
35049f7752
commit
9dfdb52c98
4 changed files with 5 additions and 5 deletions
|
|
@ -37,7 +37,7 @@
|
|||
</div>
|
||||
|
||||
<div class="tab-pane" id="profileParty">
|
||||
<app:party:party />
|
||||
<app:groups:party />
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="profileAchievements">
|
||||
|
|
@ -132,7 +132,7 @@
|
|||
|
||||
<ul class='unstyled tavern-chat'>
|
||||
{#each _tavern.chat.messages as :message}
|
||||
<app:party:chat-message message={{:message}} />
|
||||
<app:groups:chat-message message={{:message}} />
|
||||
{/}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
</form>
|
||||
<ul class='party-chat unstyled'>
|
||||
{#each _party.chat as :message}
|
||||
<app:party:chat-message message={{:message}} />
|
||||
<app:groups:chat-message message={{:message}} />
|
||||
{/}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<div class="herobox-wrap" style="{{#if equal(:memberId, _userId)}}display:none;{{/}}">
|
||||
{{#unless equal(:memberId, _userId)}}
|
||||
<app:avatar:avatar profile={{_members[:memberId]}} party="true" />
|
||||
<!-- Would be way cleaner as a Derby template `data-content="<app:party:member-stats profile={{:member}} />"`, but it was just printing HTML as text -->
|
||||
<!-- Would be way cleaner as a Derby template `data-content="<app:groups:member-stats profile={{:member}} />"`, but it was just printing HTML as text -->
|
||||
<!-- I've re-implemented the rollover using the actual `herobox`/avatar template and data-attributes.
|
||||
This Derby template idea would have been really handy but this is pretty versatile, and keeps it all in the avatar section -->
|
||||
{{/}}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<import: src="rewards">
|
||||
<import: src="footer">
|
||||
<import: src="settings">
|
||||
<import: src="party">
|
||||
<import: src="groups">
|
||||
<import: src="pets">
|
||||
<import: src="game-pane">
|
||||
<import: src="filters">
|
||||
|
|
|
|||
Loading…
Reference in a new issue