report.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * Main report view.
  4. *
  5. * Contains the view layout and ome code to present the data.
  6. *
  7. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package SWDB
  10. * @category View
  11. * @property Report_Page $page The page model.
  12. * @var Report_Page $page The page model.
  13. */
  14. ?>
  15. <!DOCTYPE html>
  16. <html lang='en'>
  17. <head>
  18. <?=$page->generate_head()?>
  19. </head>
  20. <body id='body_reports'>
  21. <header>
  22. <?php
  23. include __DIR__ . "/inc/header_app.php";
  24. include __DIR__ . "/inc/header_player.php";
  25. ?>
  26. </header>
  27. <aside>
  28. <h2>
  29. Reports
  30. </h2>
  31. <p>
  32. Reports that will help you progress in the game.
  33. </p>
  34. </aside>
  35. <main>
  36. <section class='content report'>
  37. <h2>
  38. Pending skill-ups
  39. </h2>
  40. <article>
  41. <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
  42. <p>
  43. Shows a list of the monstes in need of skilling-up
  44. 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.
  45. </p>
  46. <a class='a_button' href='/player/<?=get_context()->get_player()->get_id()?>/report/skillup/'>
  47. Go
  48. </a>
  49. </article>
  50. </section>
  51. <section class='content report'>
  52. <h2>
  53. Runes to improve
  54. </h2>
  55. <article class='report'>
  56. <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
  57. <p>
  58. Shows monsters with runes that can be grinded or enchanted.
  59. It list the grindstones and gems that are available for each rune.
  60. </p>
  61. <a class='a_button' href='/player/<?=get_context()->get_player()->get_id()?>/report/rune_enchantment/'>
  62. Go
  63. </a>
  64. </article>
  65. </section>
  66. </main>
  67. <?php
  68. include __DIR__ . "/inc/footer.php";
  69. ?>
  70. </body>
  71. </html>