diff --git a/src/isaw.exhibitions/isaw/exhibitions/browser/exhibition_object.pt b/src/isaw.exhibitions/isaw/exhibitions/browser/exhibition_object.pt
index 6f626c30d..e9a77b3c6 100644
--- a/src/isaw.exhibitions/isaw/exhibitions/browser/exhibition_object.pt
+++ b/src/isaw.exhibitions/isaw/exhibitions/browser/exhibition_object.pt
@@ -15,7 +15,9 @@
- Artist:
- Artist
- Title:
- Title
-
- Medium:
- Medium
+
- Languge:
- Object Language
+
- Medium:
- Medium
+
- Location:
- Object Location
- Dimensions:
- Running time:
diff --git a/src/isaw.exhibitions/isaw/exhibitions/interfaces/__init__.py b/src/isaw.exhibitions/isaw/exhibitions/interfaces/__init__.py
index 6ee0bc1da..027946e43 100644
--- a/src/isaw.exhibitions/isaw/exhibitions/interfaces/__init__.py
+++ b/src/isaw.exhibitions/isaw/exhibitions/interfaces/__init__.py
@@ -32,6 +32,8 @@ class IExhibitionObject(model.Schema):
dimensions = schema.TextLine(title=_(u'Dimensions'),
required=False)
+ object_language = schema.TextLine(title=_(u'Object Language'), required=False)
+
inventory_num = schema.TextLine(title=_(u'Inventory Number'),
required=True)
@@ -44,6 +46,8 @@ class IExhibitionObject(model.Schema):
medium = schema.TextLine(title=_(u'Medium'),
required=False)
+ object_location = schema.TextLine(title=_(u'Object Location'), required=False)
+
notes = schema.TextLine(title=_(u'Notes'),
required=False)