コード例 #1
0
ファイル: gallery.py プロジェクト: timparkin/into-the-light
 def render_prev(self,ctx,data):
     return T.a(href=data['prev'])[ T.img(src='/skin/images/photonav-prev%s.gif'%common.getInverted(ctx)) ]
コード例 #2
0
ファイル: gallery.py プロジェクト: timparkin/into-the-light
 def render_up(self,ctx,data):
     return T.a(href='/gallery/%s'%self.category)[ T.img(src='/skin/images/photonav-up%s.gif'%common.getInverted(ctx)) ]
コード例 #3
0
ファイル: gallery.py プロジェクト: timparkin/into-the-light
 def render_next(self,ctx,data):
     return T.a(href=data['next'])[ T.img(src='/skin/images/photonav-next%s.gif'%common.getInverted(ctx)) ]