| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
- <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
- <title><?=$page->title?></title>
- <link rel='shortcut icon' href='<?=$page->favicon?>'/>
- <!-- CSS files -->
- <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>ui.css'/>
- <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>report.css'/>
- <!-- Script files -->
- <script src="<?=$path["js"]?>ui.js"></script>
- <!-- Meta tags -->
- <link rel='canonical' href='<?=$page->canonical?>'/>
- <link rel='author' href='<?=$page->author?>'/>
- <link rel='publisher' href='<?=$page->author?>'/>
- <meta name='description' content='<?=$page->description?>'/>
- <meta property='og:title' content='<?=$page->title?>'/>
- <meta property='og:url' content='<?=$page->canonical?>'/>
- <meta property='og:description' content='<?=$page->description?>'/>
- <meta property='og:image' content='<?=$page->icon?>'/>
- <meta property='og:site_name' content='<?=$page->name?>'/>
- <meta property='og:type' content='website'/>
- <meta property='og:locale' content='en'/>
- <meta name='twitter:card' content='summary'/>
- <meta name='twitter:title' content='<?=$page->title?>'/>
- <meta name='twitter:description' content='<?=$page->description?>'/>
- <meta name='twitter:image' content='<?=$page->icon?>'/>
- <meta name='twitter:url' content='<?=$page->canonical?>'/>
- <meta name='robots' content='index follow'/>
- </head>
- <body id='body_reports'>
- <?php
- include __DIR__ . "/inc/header.php";
- ?>
- <section class='content report'>
- <h2>
- Pending skill-ups
- </h2>
- <article>
- <form action='/report/skillup/' method='get'>
- <img alt=' ' src='<?=$path["img"]["content"]?>monster/0115.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>
- <div class='report_filters'>
- <div class='filter' id='filter_stars'>
- <span>Min. stars:</span>
- <input type='number' name='min_stars' id='filter_stars_min' min='1' max='6' value='5'/>
- <br/>
- <span>Max. stars:</span>
- <input type='number' name='max_stars' id='filter_stars_max' min='1' max='6' value='6'/>
- </div>
- <div class='filter' id='filter_stars'>
- <span>Min. natural stars:</span>
- <input type='number' name='min_natural_stars' id='filter_stars_min' min='1' max='5' value='1'/>
- <br/>
- <span>Max. natural stars:</span>
- <input type='number' name='max_natural_stars' id='filter_stars_max' min='1' max='5' value='5'/>
- </div>
- <div class='filter'>
- <input type='checkbox' name='in_storage'/>
- Show monsters in storage
- <br/>
- <input type='checkbox' name='without_runes'/>
- Show monsters without runes
- </div>
- <div id='filter_apply'>
- <input type='submit' value='Generate'/>
- </div>
- </div>
- </form>
- </article>
- </section>
- <section class='content report'>
- <h2>
- Runes to replace
- </h2>
- <article class='report'>
- <form action='/report/runeupgrade/' method='get'>
- <img alt=' ' src='<?=$path["img"]["layout"]?>rune/base.png'> <!-- Devilmon image -->
- <p>
- Shows monsters with runes that can be upgraded.
- It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
- </p>
- <div class='report_filters'>
- <div class='filter' id='filter_stars'>
- <span>Min. stars:</span>
- <input type='number' name='min_stars' id='filter_stars_min' min='1' max='6' value='5'/>
- <br/>
- <span>Max. stars:</span>
- <input type='number' name='max_stars' id='filter_stars_max' min='1' max='6' value='6'/>
- </div>
- <div class='filter'>
- <input type='checkbox' name='in_storage'/>
- Show monsters in storage
- </div>
- <div id='filter_apply'>
- <input type='submit' value='Generate'/>
- </div>
- </div>
- </form>
- </article>
- </section>
- <?php
- include __DIR__ . "/inc/footer.php";
- ?>
- </body>
- </html>
|