PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` from __future__ import print_function from __future__ import unicode_literals from . import View import sys class BlocksView(View): """ Assign ``blocks`` with this list [ { "title": "...", "content": "some text", }, ... ] """ def render(self): for index, block in enumerate(self.args.blocks): if block["content"]: if "title" in block: self.print(block["title"]) self.print(block["content"], end="") if self.next(index): self.print("") def next(self, index): """Return True if there is any nonempty block after given index""" for block in self.args.blocks[index+1:]: if block["content"]: return True return False def has_content_and_title(self): """Return True if at least one block's content & title is not empty""" for block in self.args.blocks[0:]: if block["content"] and "title" in block.keys(): if block["title"]: return True return False