In the staff client normal view of a record, if you have a repeated MARC field then you'd get the all of the repeated entries in the same line separated by a coma. So for a example for a repeated 701 field you'd get something like this: 701_tag:701_value,701_value_of_repeated
What I'd like to do is have each repeated field to be displayed in its own line 701_tag:701_value 701_tag:701_value_of_repeated If you see my previous post <http://koha.1045719.n5.nabble.com/Staff-Client-Normal-View-details-td5872284.html> you'll see why I want to do that. What I've tried is this: <xsl:call-template name="tag_7xx"> <xsl:for-each select="marc:datafield[@tag=701]"> <xsl:with-param name="label" select="marc:subfield[@code='4']" /> </xsl:for-each> </xsl:call-template> I've tried a few variations of this as well, but always with no success. Instead it removes the entire normal view from the staff client. Any help is greatly appreciated -- View this message in context: http://koha.1045719.n5.nabble.com/Repeated-MARC-field-in-Staff-normal-view-tp5874491.html Sent from the Koha-devel mailing list archive at Nabble.com. _______________________________________________ Koha-devel mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
