report.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /**
  3. * Main report view.
  4. *
  5. * Contains the view layout and ome code to present the data.
  6. *
  7. * @category View
  8. * @property_read Report_Page $page The page model.
  9. */
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang='en'>
  13. <head>
  14. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  15. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  16. <title><?=$page->title?></title>
  17. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  18. <!-- CSS files -->
  19. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  20. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>report.css'/>
  21. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>filters.css'/>
  22. <!-- Meta tags -->
  23. <link rel='canonical' href='<?=$page->canonical?>'/>
  24. <link rel='author' href='<?=$page->author?>'/>
  25. <link rel='publisher' href='<?=$page->author?>'/>
  26. <meta name='description' content='<?=$page->description?>'/>
  27. <meta property='og:title' content='<?=$page->title?>'/>
  28. <meta property='og:url' content='<?=$page->canonical?>'/>
  29. <meta property='og:description' content='<?=$page->description?>'/>
  30. <meta property='og:image' content='<?=$page->icon?>'/>
  31. <meta property='og:site_name' content='<?=$page->name?>'/>
  32. <meta property='og:type' content='website'/>
  33. <meta property='og:locale' content='en'/>
  34. <meta name='twitter:card' content='summary'/>
  35. <meta name='twitter:title' content='<?=$page->title?>'/>
  36. <meta name='twitter:description' content='<?=$page->description?>'/>
  37. <meta name='twitter:image' content='<?=$page->icon?>'/>
  38. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  39. <meta name='robots' content='index follow'/>
  40. </head>
  41. <body id='body_reports'>
  42. <?php
  43. include __DIR__ . "/inc/header.php";
  44. ?>
  45. <section class='content report'>
  46. <h2>
  47. Pending skill-ups
  48. </h2>
  49. <article>
  50. <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
  51. <p>
  52. Shows a list of the monstes in need of skilling-up
  53. 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.
  54. </p>
  55. <a class='a_button' href='/<?=$UID?>/report/skillup/'>
  56. Go
  57. </a>
  58. </article>
  59. </section>
  60. <section class='content report'>
  61. <h2>
  62. Runes to replace
  63. </h2>
  64. <article class='report'>
  65. <img alt=' ' src='<?=URL::IMG["RUNE"]?>base.png'>
  66. <p>
  67. Shows monsters with runes that can be upgraded.
  68. It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
  69. </p>
  70. <a class='a_button' href='/<?=$UID?>/report/runeupgrade/'>
  71. Go
  72. </a>
  73. </article>
  74. </section>
  75. <section class='content report'>
  76. <h2>
  77. Runes to upgrade
  78. </h2>
  79. <article class='report'>
  80. <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
  81. <p>
  82. Shows monsters with runes that can be crafted.
  83. It list the grindstones and gems that are available for each rune.
  84. </p>
  85. <a class='a_button' href='/<?=$UID?>/report/runecraft/'>
  86. Go
  87. </a>
  88. </article>
  89. </section>
  90. <?php
  91. include __DIR__ . "/inc/footer.php";
  92. ?>
  93. </body>
  94. </html>