Ejemplo n.º 1
0
def table(slug):
    try:
        table = Table.get('tables', slug)
    except TableDoesNotExist:
        abort(404)
    
    return render_template('table.html', table=table)
Ejemplo n.º 2
0
 def testGetTable(self):
     t = Table.get(self.table_path, 'example')
     self.assertEqual(t.title, 'Failed Banks List')