mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
24 lines
749 B
HTML
24 lines
749 B
HTML
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-2">
|
|
<ds-thumbnail [thumbnail]="bitstream"></ds-thumbnail>
|
|
</div>
|
|
<div class="col-md-10">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h3>{{bitstream?.name}} <span class="text-muted">({{bitstream?.sizeBytes | dsFileSize}})</span></h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ds-form *ngIf="bitstream"
|
|
[formId]="'edit-bitstream-form-id'"
|
|
[formGroup]="formGroup"
|
|
[formModel]="formModel"
|
|
[formLayout]="formLayout"
|
|
(submitForm)="onSubmit()"
|
|
(dfChange)="onChange($event)"></ds-form>
|
|
</div>
|
|
</div>
|
|
</div>
|