Пример #1
0
 def get(self, tags=None):
     result = Collection.get_assets(tags)
     if result is None:
         return self.status(404, 'Collection Not Found')
     self.render('imageapp/portfolio.html',
                 result=result,
                 cleanup_list=utils.cleanup_list)
Пример #2
0
 def get(self, tags=None):
     result = Collection.get_assets(tags, asset_kind='Collection')
     self.render('imageapp/listing.html', result = result,
                                 cleanup_list = utils.cleanup_list)
Пример #3
0
 def get(self, tags=None):
     result = Collection.get_assets(tags)
     if result is None:
         return self.status(404,'Collection Not Found')
     self.render('imageapp/portfolio.html', result = result,
                                   cleanup_list = utils.cleanup_list)
Пример #4
0
 def get(self, tags=None):
     result = Collection.get_assets(tags, asset_kind='Collection')
     self.render('imageapp/listing.html',
                 result=result,
                 cleanup_list=utils.cleanup_list)