summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index 855d7c8e4..8180707bc 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
+# Copyright (C) 2012-2014 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@@ -113,6 +113,8 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter):
scientist = models.ForeignKey(Person, blank=True, null=True,
verbose_name=_(u"In charge scientist"),
related_name='operation_scientist_responsability')
+ operator = models.ForeignKey(Organization, blank=True, null=True,
+ verbose_name=_(u"Operator"))
in_charge = models.ForeignKey(Person, blank=True, null=True,
verbose_name=_(u"In charge"),
related_name='operation_responsability')