document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $def with (light_statuses)
  2. $ str_status = None
  3.  
  4. $if light_statuses:
  5.         <form action="/hello" method="POST">
  6.             $if light_statuses[\'green\'] == 0:
  7.                 <input type="image" name="led" src="static/img/green_button_off.png" value="green">
  8.             $else:
  9.                 <input type="image" name="led" src="static/img/green_button_on.png" value="green">
  10.             <br/>  
  11.             $if light_statuses[\'blue\'] == 0:
  12.                 <input type="image" name="led" src="static/img/blue_button_off.png" value="blue">
  13.             $else:
  14.                 <input type="image" name="led" src="static/img/blue_button_on.png" value="blue">
  15.             <br/>
  16.             $if light_statuses[\'red\'] == 0:
  17.                 <input type="image" name="led" src="static/img/red_button_off.png" value="red">
  18.             $else:
  19.                 <input type="image" name="led" src="static/img/red_button_on.png" value="red">
  20.         </form>
  21. $else:
  22.          <form action="/hello" method="POST">
  23.             <input type="image" name="led" src="static/img/green_button.png" value="green">
  24.             <br/>
  25.             <input type="image" name="led" src="static/img/blue_button.png" value="blue">
  26.             <br/>
  27.             <input type="image" name="led" src="static/img/red_button.png" value="red">
  28.         </form>
');