File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/isaw.exhibitions/isaw/exhibitions Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1515 <div class =" ExhibitObjectInfo" >
1616 <dl class =" ExhibitObjectArtist" tal : condition =" context/artist|nothing" ><dt >Artist:</dt ><dd tal : content =" context/artist" >Artist</dd ></dl >
1717 <dl class =" ExhibitObjectTitle" ><dt >Title:</dt ><dd tal : content =" context/title" >Title</dd ></dl >
18- <dl class =" ExhibitObjectMedium" tal : condition =" context/medium|nothing" ><dt >Medium:</dt > <dd tal : content =" context/medium" >Medium</dd ></dl >
18+ <dl class =" ExhibitObjectLanguage" tal : condition =" context/object_language|nothing" ><dt >Languge:</dt ><dd tal : content =" context/object_language" >Object Language</dd ></dl >
19+ <dl class =" ExhibitObjectMedium" tal : condition =" context/medium|nothing" ><dt >Medium:</dt ><dd tal : content =" context/medium" >Medium</dd ></dl >
20+ <dl class =" ExhibitObjectSite" tal : condition =" context/object_location|nothing" ><dt >Location:</dt ><dd tal : content =" context/object_location" >Object Location</dd ></dl >
1921 <dl class =" ExhibitObjectDimensions" tal : condition =" context/dimensions|nothing" tal : define =" medium context/medium" >
2022 <dt tal : condition =" python:medium != 'Video/installation'" >Dimensions:</dt >
2123 <dt tal : condition =" python:medium == 'Video/installation'" >Running time:</dt >
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ class IExhibitionObject(model.Schema):
3232 dimensions = schema .TextLine (title = _ (u'Dimensions' ),
3333 required = False )
3434
35+ object_language = schema .TextLine (title = _ (u'Object Language' ), required = False )
36+
3537 inventory_num = schema .TextLine (title = _ (u'Inventory Number' ),
3638 required = True )
3739
@@ -44,6 +46,8 @@ class IExhibitionObject(model.Schema):
4446 medium = schema .TextLine (title = _ (u'Medium' ),
4547 required = False )
4648
49+ object_location = schema .TextLine (title = _ (u'Object Location' ), required = False )
50+
4751 notes = schema .TextLine (title = _ (u'Notes' ),
4852 required = False )
4953
You can’t perform that action at this time.
0 commit comments