www/profile_fermentation.php

Wed, 06 May 2020 14:14:14 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 06 May 2020 14:14:14 +0200
changeset 667
1246550451ca
parent 217
318aab371497
child 689
499c4921a90f
permissions
-rw-r--r--

Removed the last compressed css file. Reworked all mash steps, implemented deconction steps. Added calculations for infuse amounts and decoctions amounts. The mash steps are now manually sorted in the editor grids to have full control over the steps order. Display errors in red in the grid. Updated beerxml export, the product checklist and print output of the products and recipes for all these mash steps changes.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
page_header('Vergisting profielen', 'profile_fermentation');
?>

   <div id="jqxgrid"></div>
   <div style="margin-top: 30px;">
    <div id="cellbegineditevent"></div>
    <div style="margin-top: 10px;" id="cellendeditevent"></div>
   </div>

   <!-- Popup editor window. -->
   <div id="popupWindow">
    <div>Wijzig vergisting profiel.</div>
    <div style="overflow: hidden;">
     <table style="width: 100%;">
      <tr>
       <td align="right" style="vertical-align: top;">Profiel naam:</td>
       <td align="left" colspan="3" style="vertical-align: top;"><input id="name" /></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Begin laag &deg;C:</td>
       <td align="left"><div id="inittemp_lo"></div></td>
       <td align="right" style="vertical-align: top;">Begin hoog &deg;C:</td>
       <td align="left"><div id="inittemp_hi"></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Koelkast of bier:</td>
       <td align="left" colspan="3"><div id="fridgemode"></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Stappen:</td>
       <td align="left" colspan="3"><div id="grid"></div></td>
      </tr>
      <tr>
       <td style="padding-top: 40px;" align="right"><input type="button" id="Delete" value="Verwijder" /></td>
       <td align="right"></td>
       <td align="right"></td>
       <td style="padding-top: 40px;" align="left">
        <input style="margin-right: 5px;" type="button" id="Save" value="Sla op" />
        <input id="Cancel" type="button" value="Annuleer" />
       </td>
      </tr>
     </table>
    </div>
   </div>

<?php
confirm_delete();
page_footer();
?>

mercurial