diff options
author | Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> | 2021-01-31 00:25:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 00:25:53 +0100 |
commit | 2b9695c250ffd6029446063126a55d30c6dd88b5 (patch) | |
tree | 3103f2251f0aa701fbdda3a0c8ddd9c769a94762 /tables.py | |
parent | 93a0fe4da0a866717fba6015e67e3b37b699950e (diff) | |
download | justice-2b9695c250ffd6029446063126a55d30c6dd88b5.tar.gz |
Add files via upload
Adding basing frontend logic based on flask / jinja2.
Diffstat (limited to 'tables.py')
-rw-r--r-- | tables.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tables.py b/tables.py new file mode 100644 index 0000000..e9586c9 --- /dev/null +++ b/tables.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Sun Jan 17 11:52:57 2021 + +@author: sveter +""" + +from flask_table import Table, Col + +class Results(Table): + classes = ['table'] + id = Col('Id', show=False) + nazev = Col('Obchodní firma') + ico = Col('IČ') + sidlo = Col('Sídlo') + zapis = Col('Zápis do OR') + oddil = Col('Oddíl') + vlozka = Col('Vložka') + soud = Col('Rejstříkový soud')
\ No newline at end of file |