From b9994e6a455685165deaf7951f046317c012400a Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Thu, 7 Jun 2018 00:01:11 +0200 Subject: [PATCH] fixed wrong changed path --- cookbook/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/tables.py b/cookbook/tables.py index 394c532b..483bec1b 100644 --- a/cookbook/tables.py +++ b/cookbook/tables.py @@ -78,7 +78,7 @@ class SyncTable(tables.Table): class Meta: model = Sync template_name = 'generic/table_template.html' - fields = ('id', 'file_path', 'storage', 'last_checked') + fields = ('id', 'path', 'storage', 'last_checked') class RecipeImportTable(tables.Table):