filter/dist/views/index.pug
2017-09-06 20:11:15 +02:00

73 lines
3.1 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

doctype html
html
head
title #{title}
link(rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css' integrity='sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M' crossorigin='anonymous')
script(src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous")
script(src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous")
script(src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous")
script(src='https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js', integrity='sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb', crossorigin='anonymous')
link(rel='stylesheet', href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css')
link(rel='stylesheet', href='/stylesheets/style.css')
body
include partials/menu.pug
.container
h1= title
form(action='/filter', method='POST')
.form-group
label(for='niz') Vnesi testni niz:
input.form-control.form-control-lg(type='text', name='niz', value=niz, placeholder='Testni niz ...')
small.form-text.text-muted Vpišite testni namen transakcije, ki ga bomo preverili. Nekaj veljavnih testnih davčnih in EMŠO številk je na voljo v pomoči (gumb Pomoč),
input(type='hidden', name='api', value='no')
button.btn.btn-secondary(type='button', data-toggle='collapse', data-target='#collapseExample', aria-expanded='false', aria-controls='collapseExample')
i.fa.fa-info-circle
| Pomoč
strong
|
button.btn.btn-primary(type='submit')
i.fa.fa-paper-plane
| Pošlji
p  
p
#collapseExample.collapse
.card.card-body
| Veljavna davčna številka:
code 12345679
code 11223340
| Veljavna EMŠO številka:
code 0101999500014
code 0101000500012
table.table
tr
th Opis
th.text-right Število
tr
td Niz:
td.text-right= niz
tr
td Niz vsebuje ime:
td.text-right= vsebujeIme
tr
td Niz vsebuje priimek:
td.text-right= vsebujePriimek
tr
td Niz vsebuje ulico:
td.text-right= vsebujeUlico
tr
td Niz vsebuje obliko:
td.text-right= vsebujeObliko
tr
td Niz vsebuje davčno:
td.text-right= vsebujeDavcno
tr
td Niz vsebuje matično:
td.text-right= vsebujeMaticno
tr
td Niz se ujema s pravilom:
td.text-right= vsebujeFilter
each filter in najdeniFiltri
tr
td Najdeni filter:
td= filter
include partials/footer.pug