mirror of
https://gitlab.com/Deukhoofd/BattleSim.git
synced 2025-10-27 18:00:03 +00:00
Added page with pokemon data on /tiers
This commit is contained in:
48
client/templates/tiers.jade
Normal file
48
client/templates/tiers.jade
Normal file
@@ -0,0 +1,48 @@
|
||||
head
|
||||
link(href='/css/tiers.css', rel='stylesheet')
|
||||
div
|
||||
table.table.headerTable
|
||||
tr.row.header.fixed
|
||||
th.th.td.dexno#dexno
|
||||
| Dex No.
|
||||
th.th.td#species
|
||||
| Species
|
||||
th.td#forme
|
||||
| Forme
|
||||
th.td.tier#tier
|
||||
| Tier
|
||||
th.td.type#types
|
||||
| Types
|
||||
th.td.type.empty
|
||||
th.td.abilities#abilities
|
||||
| Abilities
|
||||
th.td.abilities#HA
|
||||
| HA
|
||||
th.td.allstat#HP
|
||||
| HP
|
||||
th.td.allstat#att
|
||||
| Att
|
||||
th.td.allstat#def
|
||||
| Def
|
||||
th.td.allstat#spatt
|
||||
| Sp.Att
|
||||
th.td.allstat#spdef
|
||||
| Sp.Def
|
||||
th.td.allstat#speed
|
||||
| Speed
|
||||
th.td.release#release
|
||||
| Released
|
||||
|
||||
.wrapper
|
||||
table.table.list
|
||||
|
||||
select#tierFilter(onchange="filterTier(this)")
|
||||
option Filter Tier
|
||||
|
||||
|
||||
script(type='text/javascript', src="/js/underscore-min.js")
|
||||
script(type='text/javascript', src="/js/jquery.js")
|
||||
script(type='text/javascript').
|
||||
var species_data =!{JSON.stringify(species)}
|
||||
var formes_data =!{JSON.stringify(formes)}
|
||||
script(type='text/javascript', src="/js/tiers.js")
|
||||
@@ -9,6 +9,7 @@ ul.nav
|
||||
li.nav_item.fake_link.nav_battle_list Battle List
|
||||
a(href="/replays", target="_blank").nav_item Your Replays
|
||||
a(href="/leaderboard/", target="_blank").nav_item Leaderboard
|
||||
a(href="/tiers/", target="_blank").nav_item Tier List
|
||||
a(href="//bitbucket.org/PInsurgence/battle-simulator/issues?status=new&status=open", target="_blank").nav_item Bug Reports
|
||||
a(href="//forums.p-insurgence.com/c/battle-simulator/feature-requests", target="_blank").nav_item Feature Requests
|
||||
|
||||
|
||||
Reference in New Issue
Block a user