report.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!DOCTYPE html>
  2. <html lang='en'>
  3. <head>
  4. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  5. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  6. <title><?=$page->title?></title>
  7. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  8. <!-- CSS files -->
  9. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>ui.css'/>
  10. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>report.css'/>
  11. <!-- Script files -->
  12. <script src="<?=$path["js"]?>ui.js"></script>
  13. <!-- Meta tags -->
  14. <link rel='canonical' href='<?=$page->canonical?>'/>
  15. <link rel='author' href='<?=$page->author?>'/>
  16. <link rel='publisher' href='<?=$page->author?>'/>
  17. <meta name='description' content='<?=$page->description?>'/>
  18. <meta property='og:title' content='<?=$page->title?>'/>
  19. <meta property='og:url' content='<?=$page->canonical?>'/>
  20. <meta property='og:description' content='<?=$page->description?>'/>
  21. <meta property='og:image' content='<?=$page->icon?>'/>
  22. <meta property='og:site_name' content='<?=$page->name?>'/>
  23. <meta property='og:type' content='website'/>
  24. <meta property='og:locale' content='en'/>
  25. <meta name='twitter:card' content='summary'/>
  26. <meta name='twitter:title' content='<?=$page->title?>'/>
  27. <meta name='twitter:description' content='<?=$page->description?>'/>
  28. <meta name='twitter:image' content='<?=$page->icon?>'/>
  29. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  30. <meta name='robots' content='index follow'/>
  31. </head>
  32. <body id='body_reports'>
  33. <?php
  34. include __DIR__ . "/inc/header.php";
  35. ?>
  36. <section id='reports'>
  37. <article class='report'>
  38. <form action='/report/skillup/' method='get'>
  39. <h3>
  40. Pending skill-ups
  41. </h3>
  42. <img alt=' ' src='<?=$path["img"]["content"]?>monster/0115.png'> <!-- Devilmon image -->
  43. <p>
  44. Shows a list of the monstes in need of skilling-up
  45. It sorts monster not by the absolute ammount of remaining power-ups, but by a ponderated list tht takes into account to which skills the previous power ups have gone, placing more value in the more advanced skills.
  46. </p>
  47. <div class='report_filters'>
  48. <div class='filter' id='filter_stars'>
  49. <span>Min. stars:</span>
  50. <input type='number' name='min_stars' id='filter_stars_min' min='1' max='6' value='5'/>
  51. <br/>
  52. <span>Max. stars:</span>
  53. <input type='number' name='max_stars' id='filter_stars_max' min='1' max='6' value='6'/>
  54. </div>
  55. <div class='filter' id='filter_stars'>
  56. <span>Min. natural stars:</span>
  57. <input type='number' name='min_natural_stars' id='filter_stars_min' min='1' max='5' value='1'/>
  58. <br/>
  59. <span>Max. natural stars:</span>
  60. <input type='number' name='max_natural_stars' id='filter_stars_max' min='1' max='5' value='5'/>
  61. </div>
  62. <div class='filter'>
  63. <input type='checkbox' name='in_storage'/>
  64. Show monsters in storage
  65. <br/>
  66. <input type='checkbox' name='without_runes'/>
  67. Show monsters without runes
  68. </div>
  69. <div id='filter_apply'>
  70. <input type='submit' value='Generate'/>
  71. </div>
  72. </div>
  73. </form>
  74. </article>
  75. <article class='report'>
  76. <form action='/report/runeupgrade/' method='get'>
  77. <h3>
  78. Runes to replace
  79. </h3>
  80. <img alt=' ' src='<?=$path["img"]["layout"]?>rune/base.png'> <!-- Devilmon image -->
  81. <p>
  82. Shows monsters with runes that can be upgraded.
  83. It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
  84. </p>
  85. <div class='report_filters'>
  86. <div class='filter' id='filter_stars'>
  87. <span>Min. stars:</span>
  88. <input type='number' name='min_stars' id='filter_stars_min' min='1' max='6' value='5'/>
  89. <br/>
  90. <span>Max. stars:</span>
  91. <input type='number' name='max_stars' id='filter_stars_max' min='1' max='6' value='6'/>
  92. </div>
  93. <div class='filter'>
  94. <input type='checkbox' name='in_storage'/>
  95. Show monsters in storage
  96. </div>
  97. <div id='filter_apply'>
  98. <input type='submit' value='Generate'/>
  99. </div>
  100. </div>
  101. </form>
  102. </article>
  103. </section>
  104. <?php
  105. include __DIR__ . "/inc/footer.php";
  106. ?>
  107. </body>
  108. </html>