2019-04-08 16:53:09 +02:00
|
|
|
import { Component, Input} from '@angular/core';
|
|
|
|
@Component({
|
|
|
|
selector: 'manage',
|
|
|
|
template: `
|
2019-04-11 11:36:31 +02:00
|
|
|
<a [href]="'https://beta.admin.connect.openaire.eu/dashboard?communityId='+communityId"
|
2020-04-24 18:32:00 +02:00
|
|
|
[class]=" ((buttonSizeSmall)?'uk-button-small':'')+' uk-button portal-button'"
|
2019-04-11 11:36:31 +02:00
|
|
|
target="_blank">
|
2019-04-08 16:53:09 +02:00
|
|
|
Manage
|
|
|
|
</a>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class ManageComponent {
|
|
|
|
@Input() communityId:string;
|
2019-04-11 11:36:31 +02:00
|
|
|
@Input() buttonSizeSmall = true;
|
2019-04-08 16:53:09 +02:00
|
|
|
constructor() {}
|
|
|
|
}
|