| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- /**
- * Main report view.
- *
- * Contains the view layout and ome code to present the data.
- *
- * @author Iñigo Valentin <i@inigovalentin.com>
- * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
- * @package SWDB
- * @category View
- * @property Report_Page $page The page model.
- * @var Report_Page $page The page model.
- */
- ?>
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <?=$page->generate_head()?>
- </head>
- <body id='body_reports'>
- <header>
- <?php
- include __DIR__ . "/inc/header_app.php";
- include __DIR__ . "/inc/header_player.php";
- ?>
- </header>
- <aside>
- <h2>
- Reports
- </h2>
- <p>
- Reports that will help you progress in the game.
- </p>
- </aside>
- <main>
- <section class='content report'>
- <h2>
- Pending skill-ups
- </h2>
- <article>
- <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
- <p>
- Shows a list of the monstes in need of skilling-up
- 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.
- </p>
- <a class='a_button' href='/player/<?=get_context()->get_player()->get_id()?>/report/skillup/'>
- Go
- </a>
- </article>
- </section>
- <section class='content report'>
- <h2>
- Runes to improve
- </h2>
- <article class='report'>
- <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
- <p>
- Shows monsters with runes that can be grinded or enchanted.
- It list the grindstones and gems that are available for each rune.
- </p>
- <a class='a_button' href='/player/<?=get_context()->get_player()->get_id()?>/report/rune_enchantment/'>
- Go
- </a>
- </article>
- </section>
- </main>
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|