@page @model ConfigurationPannel.Pages.TestPrintModel @{ ViewData["Title"] = "Test Print"; }

Test Print

Logout

Submit Test Print Job

@if (Model.WorkAreas == null || !Model.WorkAreas.Any()) {
No work areas found. Please check configuration.
} else {
Text will be printed on the assigned printer for the selected work area
}
@if (!string.IsNullOrEmpty(Model.SuccessMessage)) {
@Model.SuccessMessage
} @if (!string.IsNullOrEmpty(Model.ErrorMessage)) {
@Model.ErrorMessage
}