mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
Add anchorization to whitelabel forms
This commit is contained in:
parent
d75a2d257d
commit
0045dc6981
@ -66,25 +66,25 @@ let FurtherDetails = React.createClass({
|
||||
<PieceExtraDataForm
|
||||
name='artist_contact_info'
|
||||
title='Artist Contact Info'
|
||||
handleSuccess={this.showNotification}
|
||||
convertLinks
|
||||
editable={editable}
|
||||
extraData={extraData}
|
||||
handleSuccess={this.showNotification}
|
||||
pieceId={pieceId} />
|
||||
<PieceExtraDataForm
|
||||
name='display_instructions'
|
||||
title='Display Instructions'
|
||||
handleSuccess={this.showNotification}
|
||||
editable={editable}
|
||||
pieceId={pieceId}
|
||||
extraData={extraData} />
|
||||
extraData={extraData}
|
||||
handleSuccess={this.showNotification}
|
||||
pieceId={pieceId} />
|
||||
<PieceExtraDataForm
|
||||
name='technology_details'
|
||||
title='Technology Details'
|
||||
handleSuccess={this.showNotification}
|
||||
editable={editable}
|
||||
pieceId={pieceId}
|
||||
extraData={extraData} />
|
||||
extraData={extraData}
|
||||
handleSuccess={this.showNotification}
|
||||
pieceId={pieceId} />
|
||||
<Form>
|
||||
<FurtherDetailsFileuploader
|
||||
submitFile={this.submitFile}
|
||||
|
@ -134,6 +134,7 @@ let CylandAdditionalDataForm = React.createClass({
|
||||
expanded={!disabled || !!extraData.artist_contact_information}>
|
||||
<InputTextAreaToggable
|
||||
rows={1}
|
||||
convertLinks
|
||||
defaultValue={extraData.artist_contact_information}
|
||||
placeholder={getLangText('Enter the artist\'s contact information...')} />
|
||||
</Property>
|
||||
|
@ -110,6 +110,7 @@ let IkonotvArtistDetailsForm = React.createClass({
|
||||
expanded={!disabled || !!extraData.artist_website}>
|
||||
<InputTextAreaToggable
|
||||
rows={1}
|
||||
convertLinks
|
||||
defaultValue={extraData.artist_website}
|
||||
placeholder={getLangText('The artist\'s website if present...')} />
|
||||
</Property>
|
||||
@ -119,6 +120,7 @@ let IkonotvArtistDetailsForm = React.createClass({
|
||||
expanded={!disabled || !!extraData.gallery_website}>
|
||||
<InputTextAreaToggable
|
||||
rows={1}
|
||||
convertLinks
|
||||
defaultValue={extraData.gallery_website}
|
||||
placeholder={getLangText('The website of any related Gallery or Museum')} />
|
||||
</Property>
|
||||
@ -128,6 +130,7 @@ let IkonotvArtistDetailsForm = React.createClass({
|
||||
expanded={!disabled || !!extraData.additional_websites}>
|
||||
<InputTextAreaToggable
|
||||
rows={1}
|
||||
convertLinks
|
||||
defaultValue={extraData.additional_websites}
|
||||
placeholder={getLangText('Enter additional Websites/Publications if any')} />
|
||||
</Property>
|
||||
|
Loading…
Reference in New Issue
Block a user