# HG changeset patch # User cavaliet # Date 1379070036 -7200 # Node ID 566943115ef245722a31ab302314e777ca6e2573 # Parent 5c8ad775e4a41c7738168273bd4b961aeff2e457 generic object disp applied to several fields diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/css/p4l.css --- a/src/p4l/static/p4l/css/p4l.css Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/static/p4l/css/p4l.css Fri Sep 13 13:00:36 2013 +0200 @@ -48,8 +48,8 @@ .grey-bottom { border-bottom: 1px dotted #CCC; } -.grey-hover:hover { - background-color: #EEE; +.grey-hover:nth-child(odd) { + background: #EEE; } /* Flags */ diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/abstractDisp.html --- a/src/p4l/static/p4l/templates/abstractDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.abstract}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/collationDisp.html --- a/src/p4l/static/p4l/templates/collationDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.collation}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/documentCodeDisp.html --- a/src/p4l/static/p4l/templates/documentCodeDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{'document code'|translate}} : {{obj.documentCode}}
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/isbnDisp.html --- a/src/p4l/static/p4l/templates/isbnDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.isbn}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/issnDisp.html --- a/src/p4l/static/p4l/templates/issnDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.issn}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/meetingDisp.html --- a/src/p4l/static/p4l/templates/meetingDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ - diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/meetingForm.html --- a/src/p4l/static/p4l/templates/meetingForm.html Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/static/p4l/templates/meetingForm.html Fri Sep 13 13:00:36 2013 +0200 @@ -1,10 +1,16 @@
- + +
+
+
+
+ +
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/objectListTable.html --- a/src/p4l/static/p4l/templates/objectListTable.html Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/static/p4l/templates/objectListTable.html Fri Sep 13 13:00:36 2013 +0200 @@ -1,5 +1,5 @@
-
+
{{l | translate}}
{{'Actions' | translate}}
diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/periodicalDisp.html --- a/src/p4l/static/p4l/templates/periodicalDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.label}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/personDisp.html --- a/src/p4l/static/p4l/templates/personDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.name}}
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/serieForm.html --- a/src/p4l/static/p4l/templates/serieForm.html Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/static/p4l/templates/serieForm.html Fri Sep 13 13:00:36 2013 +0200 @@ -1,7 +1,7 @@
- +
diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/titleDisp.html --- a/src/p4l/static/p4l/templates/titleDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -
{{obj.title}} ({{ obj.lang }})
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/urlDisp.html --- a/src/p4l/static/p4l/templates/urlDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/static/p4l/templates/urlDisp.html Fri Sep 13 13:00:36 2013 +0200 @@ -1,5 +1,5 @@ - +
{{ obj.display }}
{{ obj.accessLevel }}
\ No newline at end of file diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/static/p4l/templates/volumeIssueDisp.html --- a/src/p4l/static/p4l/templates/volumeIssueDisp.html Fri Sep 13 10:36:43 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -
    -
  • {{'Volume'|translate}} : {{ obj.volume }}
  • -
  • {{'Number'|translate}} : {{ obj.number }}
  • -
  • {{'Language'|translate}} : {{ obj.lang }}
  • -
diff -r 5c8ad775e4a4 -r 566943115ef2 src/p4l/templates/p4l/record_update_form.html --- a/src/p4l/templates/p4l/record_update_form.html Fri Sep 13 10:36:43 2013 +0200 +++ b/src/p4l/templates/p4l/record_update_form.html Fri Sep 13 13:00:36 2013 +0200 @@ -76,16 +76,19 @@ - {{ 'issns' | translate }} - + {{ 'issns' | translate }} + {{ 'isbns' | translate }} - + {{ 'document code' | translate }} - + {{ 'language' | translate }} @@ -97,19 +100,23 @@ {{ 'titles' | translate }} - + {{ 'abstracts' | translate }} - + {{ 'added titles' | translate }} - + {{ 'titles main document' | translate }} - + {{ 'edition statement' | translate }} @@ -119,15 +126,18 @@ {{ 'imprints' | translate }} + size-fields='[3,2,2,2]' label-fields='["City","Publisher","Date","Language"]' > {{ 'collations' | translate }} - + {{ 'volume issues' | translate }} - + {{ 'project names' | translate }} @@ -135,25 +145,30 @@ {{ 'periodicals' | translate }} - + {{ 'meetings' | translate }} - + {{ 'series' | translate }} + size-fields='[5, 2, 2]' label-fields='["Title","Volume","Language"]'> {{ 'authors' | translate }} - + {{ 'subject persons' | translate }} - + {{ 'subject corporate bodies' | translate }} @@ -161,7 +176,9 @@ {{ 'subject meetings' | translate }} - + {{ 'corporate authors' | translate }} @@ -171,7 +188,7 @@ {{ 'Urls' | translate }} + size-fields='[5, 2, 2]' label-fields='["Address", "Display", "Access level"]'> {{ 'record type' | translate }}