Reputation: 65
I am new to DSpace. I want to create a new community 'Ongoing projects' and all the submissions related to that community should have different metadata compared to normal submission. How to achieve this? Any guide will be great.
Your support on this regard is highly appreciated.
Upvotes: 2
Views: 342
Reputation: 5041
Metadata input forms for the submission process are defined in input-forms.xml
.
You define the input forms for your “Ongoing projects” in the <form-definitions>
section, and then map them to collections (not communities) in the <form-map>
section of the document like this:
<form-map>
<name-map collection-handle=“handle-prefix/suffix" form-name=“ongoing-projects" />
<name-map collection-handle="default" form-name="traditional" />
</form-map>
Please have a look at the Submission User Interface section of the documentation.
Upvotes: 1