This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $listener = New-Object System.Net.HttpListener | |
| $listener.Prefixes.Add('http://+:8000/') # Must exactly match the netsh command above | |
| $listener.Start() | |
| Write-Host "Listening..." | |
| while ($listener.IsListening) { | |
| $context = $listener.GetContext() # blocks until request is received | |
| $request = $context.Request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {block #content} | |
| <h1 n:block="title">Vystavit fakturu</h1> | |
| {form invoiceForm class => form} | |
| <legend>Faktura</legend> | |
| <p> | |
| <a class="btn btn-primary" href="#" id="importButton"><i class="icon-circle-arrow-right icon-white"></i> Importovat</a> | |
| </p> | |
| <div class="control-group" style="display:none;" id="import"> |
NewerOlder