Skip to content
Snippets Groups Projects

Označení neaktivovaných účtů -- vytvoření user_html_flags

Merged Jiří Kalvoda requested to merge jk/issue-196-v2 into devel
1 file
+ 14
0
Compare changes
  • Side-by-side
  • Inline
+ 14
0
@@ -52,7+52,7 @@
return self.keys.get(key)
class CellLink(Cell):
url: str
hint: Optional[str]
@@ -85,7+85,7 @@
ch += ' checked'
return ch + '>'
class CellMarkup(Cell):
text: str
html: str
def __init__(self, text: str, html: Union[str, Markup]):
self.text = text
self.html = str(html)
def __str__(self) -> str:
return self.text
def to_html(self) -> str:
return self.html
class Table:
columns: Sequence[Column]
Loading