From aa2feef491e4475933e6464d21c5da632da6aba9 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Thu, 19 Mar 2020 17:21:41 +0100 Subject: [PATCH] added provenance in the init of model and view --- smash/web/models/__init__.py | 1 + smash/web/views/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/smash/web/models/__init__.py b/smash/web/models/__init__.py index 3dc346ec..ee5fdb79 100644 --- a/smash/web/models/__init__.py +++ b/smash/web/models/__init__.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals from django.contrib.auth.models import User +from provenance import Provenance from configuration_item import ConfigurationItem from flying_team import FlyingTeam from location import Location diff --git a/smash/web/views/__init__.py b/smash/web/views/__init__.py index 6fc26504..04dd18e6 100644 --- a/smash/web/views/__init__.py +++ b/smash/web/views/__init__.py @@ -103,4 +103,5 @@ import rooms import uploaded_files import study import password -import appointment_type \ No newline at end of file +import appointment_type +import provenance \ No newline at end of file -- GitLab