1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 00:28:00 +02:00

Merge branch 'AD-456-ikonotv-branded-page-for-registra' of bitbucket.org:ascribe/onion into AD-456-ikonotv-branded-page-for-registra

This commit is contained in:
Tim Daubenschütz 2015-08-28 14:08:45 +02:00
commit 8e7aeab3a6

View File

@ -64,14 +64,26 @@ let IkonotvAccordionListItem = React.createClass({
getSubmitButtons() { getSubmitButtons() {
return ( return (
<AclProxy <div>
aclObject={this.props.content.acl} <AclProxy
aclName="acl_submit"> aclObject={this.props.content.acl}
<IkonotvSubmitButton aclName="acl_submit">
className="btn-xs pull-right" <IkonotvSubmitButton
handleSuccess={this.handleSubmitSuccess} className="btn-xs pull-right"
piece={this.props.content}/> handleSuccess={this.handleSubmitSuccess}
</AclProxy> piece={this.props.content}/>
</AclProxy>
<AclProxy
aclObject={this.props.content.acl}
aclName="acl_submitted">
<button
disabled
className="btn btn-default btn-xs pull-right">
{getLangText('Loaned to IkonoTV')} <span className="glyphicon glyphicon-ok"
aria-hidden="true"></span>
</button>
</AclProxy>
</div>
); );
}, },