---
title: "Create a Live Advising Center Board"
slug: "create-a-live-advising-center-board"
status: "new"
updated: 2026-05-06T18:37:19Z
published: 2026-05-06T18:37:19Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://knowledge.technolutions.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a Live Advising Center Board

An advising center board gives students a quick, live view of office activity without requiring staff direction or student interaction. On one screen, students can see which appointments are currently in session, when the next ones are, and who's next to be seen.

These boards are useful in lobbies on shared screens and when students move between drop-in and scheduled services.

![](https://cdn.us.document360.io/cd8ea7a6-07f3-4846-a554-627ac016d3e3/Images/Documentation/Advising center board.png)

## Start from an example

Copy this [Suitcase](/docs/suitcase-import) ID and paste it in **Database → Suitcase Import**to import our demo portal:

```SuitcaseID
bf0cd61e-5126-488b-be0d-127433bb8319:slate-success-showcase
```

## Organizing appointment queues

If you want to build this portal on your own, start by deciding which services belong on the board. Separate queues make the display easier to read and reduce confusion in busy offices. A common setup is one column for drop-in appointments and one column for scheduled advising sessions.

Keep the display focused on the information students need in the moment:

- The active queues, such as drop-in advising and scheduled advising.
- Which appointments are in session now.
- Which appointment is next in each queue.
- How soon the next session begins.
- Brief office messages, such as check-in instructions or reminder text.

## Adding exports

Pull the smallest set of data required for a public display. In most cases, that includes student name, appointment start time, appointment end time, and a status value that helps determine whether the appointment is upcoming or in session.

If you are using repeated appointment rows or grouped data in the display, [Subquery Exports & Outputs](https://knowledge.technolutions.net/docs/subquery-exports-outputs) explains how dictionary outputs support Liquid loops.

## Building the portal view

Use an [Express Portal](https://knowledge.technolutions.net/docs/express-portals) to display the board. Configure one view for the public screen and add only the exports needed for that view. Keeping the export list short helps the screen load faster and keeps the configuration easier to maintain.

## Rendering dynamic display text with Liquid

Use [Liquid markup](https://knowledge.technolutions.net/docs/using-liquid-markup-in-portals) to turn raw data into plain status text. For example, you can label rows as "In Session," identify the next appointment in each queue, and hide appointments that have already ended.

Liquid markup also helps with conditional display rules, such as showing a summary card only when a queue has an active appointment.

## Styling the board

A lobby screen should be readable from across the room. Use large text, strong contrast, short labels, and enough spacing to separate one row from the next. If the display will appear on a TV or wall monitor, avoid layouts that depend on scrolling.

📖 See [Portal Branding](https://knowledge.technolutions.net/docs/portal-branding-overview) for custom CSS rules to adjust the layout.

## Testing on the big screen

Set the page to refresh automatically, so the display stays current during office hours. Then test the board on the actual screen. Check the font size, color contrast, timing changes, and queue order from the same distance students will be standing.

> [!NOTE]
> 💡 Tip
> 
> Consider abbreviating names, such as "Smith, J.," instead of showing the full first and last name. Avoid any information not necessary for students to understand the queue.

## More mays to use portals for Student Success

- [Enrolling students portal](/v1/docs/slate-standard-enrolling-students-portal)
- [Express Portals](https://knowledge.technolutions.net/docs/express-portals)
- [Subquery Exports & Outputs](https://knowledge.technolutions.net/docs/subquery-exports-outputs)
