e8b7660376
* Add localization strings
* Change name of Equipment section
* Add costume section to member modal
* Add costume section to member modal
* Add current pet and current mount info
* Reorder Sections and Separate Active Mounts/Pets
* switch ng-show with ng-if
* Add `noActiveMount` to pets.json
* Breaking Stuff
* Add petservices.js to the manifest
* Remove Extra Parenthesis
* Progress towards backgrounds
* Add semicolons
* Add background information
* Add all methods in petServices to userCtrl and memberModalCtrl
* Add avatar settings
* Add semicolons
* Revert "Add avatar settings"
This reverts commit 6e8cca9736.
* Remove active-pet-and-mount
* Remove Content from memberModalCtrl
* Update costumeServices.js
* Make costumeservices.js more readable
* Update costumeServices.js
* Update costumeService logic
* Remove unused strings
* Fix include statements
* move service
* Update pet/mount logic
* fixes
* Fix background logic
15 lines
814 B
Plaintext
15 lines
814 B
Plaintext
div(ng-if='user.flags.dropsEnabled')
|
|
h4(class=mobile?'item item-divider':'')=env.t('pets')
|
|
|
|
table.table.table-striped
|
|
+basicRow('activePet', '{{::costume.formatAnimal(profile.items.currentPet, \'pet\')}}')(ng-if='profile.items.currentPet')
|
|
+basicRow('petsFound','{{::statCalc.totalCount(profile.items.pets)}}')
|
|
+basicRow('beastMasterProgress','{{::statCalc.beastMasterProgress(profile.items.pets)}}')
|
|
|
|
h4(class=mobile?'item item-divider':'')=env.t('mounts')
|
|
|
|
table.table.table-striped
|
|
+basicRow('activeMount', '{{::costume.formatAnimal(profile.items.currentMount, \'mount\')}}')(ng-if='profile.items.currentMount')
|
|
+basicRow('mountsTamed','{{::statCalc.totalCount(profile.items.mounts)}}')
|
|
+basicRow('mountMasterProgress','{{::statCalc.mountMasterProgress(profile.items.mounts)}}')
|