fixing toc and relocating it and some other fields to column 1
authorJason Etheridge <jason@EquinoxOLI.org>
Wed, 9 Nov 2022 20:30:11 +0000 (15:30 -0500)
committerJason Etheridge <jason@EquinoxOLI.org>
Wed, 4 Jan 2023 13:44:01 +0000 (08:44 -0500)
Signed-off-by: Jason Etheridge <jason@EquinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.html

index 43d5360..ca519ca 100644 (file)
                 </div>
             </div><!-- end of Col 1, General Note Row -->
 
+            <!-- Col 1, Bibliography Row -->
+            <div *ngIf="summary.display.bibliography" class="row">
+                <div class="col-sm-6 font-weight-bold" i18n>Bibliography:</div>
+                <div class="col-sm-6">
+                    <ul>
+                        <li *ngFor="let _bibliography of summary.display.bibliography" class="list-group-item">
+                            {{_bibliography}}
+                        </li>
+                    </ul>
+                </div>
+            </div><!-- end of Col 1, Bibliography Row -->
+
+            <!-- Col 1, TOC Row -->
+            <div *ngIf="summary.display.toc" class="row">
+                <div class="col-sm-6 font-weight-bold" i18n>Table of Contents:</div>
+                <div class="col-sm-6">
+                    {{summary.display.toc}}
+                </div>
+            </div><!-- end of Col 1, TOC Row -->
+
+            <!-- Col 1, Thesis Row -->
+            <div *ngIf="summary.display.thesis" class="row">
+                <div class="col-sm-6 font-weight-bold" i18n>Thesis:</div>
+                <div class="col-sm-6">
+                    <ul>
+                        <li *ngFor="let _thesis of summary.display.thesis" class="list-group-item">
+                            {{_thesis}}
+                        </li>
+                    </ul>
+                </div>
+            </div><!-- end of Col 1, Thesis Row -->
+
         </div><!-- 1st column -->
 
         <div class="col-md-4"><!-- 2nd column -->
                 </div>
             </div><!-- end of Col 3, Genre Row -->
 
-            <!-- Col 3, Bibliography Row -->
-            <div *ngIf="summary.display.bibliography" class="row">
-                <div class="col-sm-6 font-weight-bold" i18n>Bibliography:</div>
-                <div class="col-sm-6">
-                    <ul>
-                        <li *ngFor="let _bibliography of summary.display.bibliography" class="list-group-item">
-                            {{_bibliography}}
-                        </li>
-                    </ul>
-                </div>
-            </div><!-- end of Col 3, Bibliography Row -->
-
-            <!-- Col 3, TOC Row -->
-            <div *ngIf="summary.display.toc" class="row">
-                <div class="col-sm-6 font-weight-bold" i18n>Table of Contents:</div>
-                <div class="col-sm-6">
-                    {{_toc}}
-                </div>
-            </div><!-- end of Col 3, TOC Row -->
-
-            <!-- Col 3, Thesis Row -->
-            <div *ngIf="summary.display.thesis" class="row">
-                <div class="col-sm-6 font-weight-bold" i18n>Thesis:</div>
-                <div class="col-sm-6">
-                    <ul>
-                        <li *ngFor="let _thesis of summary.display.thesis" class="list-group-item">
-                            {{_thesis}}
-                        </li>
-                    </ul>
-                </div>
-            </div><!-- end of Col 3, Thesis Row -->
-
         </div><!-- 3rd column -->
 
     </div><!-- "table" -->