76 lines
3.1 KiB
XML
76 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- Created By Vladimir Eliezer Tokarev !-->
|
|
|
|
<?import javafx.geometry.*?>
|
|
<?import javafx.scene.image.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<GridPane fx:id="StatusLogGridPane" prefHeight="615.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="polling_station_dashboard.statusLog.StatusLogController">
|
|
<children>
|
|
<BorderPane prefHeight="200.0" prefWidth="200.0">
|
|
<center>
|
|
<Label text="Status Log" BorderPane.alignment="CENTER" />
|
|
</center>
|
|
<left>
|
|
<ImageView BorderPane.alignment="CENTER">
|
|
<image>
|
|
<Image url="@/images/blacktriangle.png" />
|
|
</image>
|
|
<BorderPane.margin>
|
|
<Insets left="10.0" />
|
|
</BorderPane.margin>
|
|
</ImageView>
|
|
</left>
|
|
</BorderPane>
|
|
<Accordion GridPane.rowIndex="1">
|
|
<panes>
|
|
<TitledPane animated="false" text="Voters In Progress">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<AnchorPane prefHeight="486.0" prefWidth="400.0" />
|
|
<ScrollPane prefHeight="488.0" prefWidth="400.0" />
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</TitledPane>
|
|
<TitledPane animated="false" text="Pending Upload">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<ScrollPane prefHeight="485.0" prefWidth="400.0">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="200.0" prefWidth="200.0" />
|
|
</content>
|
|
</ScrollPane>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</TitledPane>
|
|
<TitledPane animated="false" text="Completed">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<ScrollPane prefHeight="486.0" prefWidth="400.0">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="200.0" prefWidth="200.0" />
|
|
</content>
|
|
</ScrollPane>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</TitledPane>
|
|
</panes>
|
|
</Accordion>
|
|
</children>
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="202.0" minHeight="0.0" prefHeight="54.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="561.0" minHeight="10.0" prefHeight="561.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
</GridPane>
|