Monday, April 20, 2015¶
>>> from lino.utils.xmlgen.html import E
>>> p = E.p("Foo", "bar")
>>> print E.tostring(p)
<p>Foobar</p>
>>> p.append(["baz"])
>>> print E.tostring(p)
Changed signature of lino.core.site.Site.get_admin_main_items()
:
the action request is now being passed. And the method may now yield
custom HTML elements.