--- title: "Enrollment Dashboards" slug: "enrollment-dashboards" status: "new" updated: 2026-08-07T14:28:05Z published: 2026-08-07T14:28:05Z canonical: "knowledge.technolutions.net/enrollment-dashboards" --- > ## 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. # Enrollment Dashboards Dashboards in Slate provide a read-only display of important information directly on a record. For [Enrollments](/v1/docs/getting-started-enrollments), dashboards can help staff quickly review key enrollment details, checklist progress, academic term information, status values, assigned staff, and other data points that support advising, registration, onboarding, or student success workflows. Create dashboards from **Database → Dashboards**. Dashboards can appear in different Slate locations. For record-based dashboards, a query pulls the data that appears, and the dashboard editor controls how that information is displayed. ![](https://cdn.us.document360.io/cd8ea7a6-07f3-4846-a554-627ac016d3e3/Images/Documentation/Screenshot 2026-05-20 154449.png) > [!WARNING] > 🏗️ Feature under development > > Please note that Enrollments is under active development, with new features being rolled out over time. Check [What’s New](https://community.technolutions.net/whats-new) for release notes. ## Why use an enrollment dashboard? An Enrollment dashboard helps users see important enrollment-specific information without selecting multiple tabs or related records. Common examples include: - Academic year and academic term - Enrollment status - Program, population, or cohort - Checklist completion - Missing requirements - Assigned advisor or staff member - Important dates or deadlines - Registration, orientation, or onboarding progress Dashboards are especially helpful when staff need a quick snapshot of where a student stands in a specific Enrollment. ## Creating the dashboard 1. Go to **Database -> Dashboards**. 2. Select **New Dashboard**. 3. Enter a short, descriptive name, such as: - Enrollment Snapshot - Enrollment Overview - Term Enrollment Dashboard - Student Enrollment Summary 4. For **Type**, select the Record option where the dashboard should appear. 5. For **Base**, select the Enrollment base available for your dashboard. 6. Select **Save**. The dashboard record opens with two primary configuration areas: **Edit Query** and **Edit Dashboard**. Build the query first, then return to the dashboard editor to control the display. ## Configuring the query Use the **Edit Query** tab to choose the data that should be available to the dashboard. ### Adding filters Filters determine which record or related data the dashboard should use. For an Enrollment dashboard, filters can vary depending on the selected base and desired display. For example, a dashboard can show information for the current Enrollment record, the related person record, or related checklist, material, or status information. ### Adding exports Exports become the merge fields that can be displayed on the dashboard. Common Enrollment dashboard exports include: | Export | Suggested computer-friendly name | | --- | --- | | Student name | `student_name` | | Academic year | `academic_year` | | Academic term | `academic_term` | | Enrollment status | `enrollment_status` | | Program | `program` | | Advisor | `advisor` | | Checklist percent complete | `checklist_percent` | | Missing checklist items | `missing_items` | | Start date | `start_date` | When creating exports for use in the dashboard editor, rename them using simple, computer-friendly names: lowercase letters, no spaces, and only hyphens or underscores when needed. This approach makes exports easier to use as merge fields. ## Designing the dashboard display After configuring the query, return to the **Edit Dashboard** tab. Use the source editor to add simple HTML and CSS. Merge fields appear on the right side of the editor and can be inserted into the dashboard layout. A simple Enrollment dashboard can include cards for the student, term, and status. ### Sample dashboard code ```xml
 
   
Student
   
{{student_name}}
 
 
   
Academic Year
   
{{academic_year}}
 
 
   
Academic Term
   
{{academic_term}}
 
 
   
Enrollment Status
   
     {{enrollment_status}}    
 
 
   
Program
   
{{program}}
 
``` > [!NOTE] > ✨ Slate AI tip > > To use Slate AI while editing a dashboard, select Source, select inside the code block, and then select the Slate AI icon from the far-right menu. You can ask Slate AI to adjust the layout, add buttons or tabs, create merge-field placeholders, or build simple data tables for your Enrollment dashboard. > > For example, you might ask Slate AI to: "Create a clean Enrollment dashboard layout with cards for Academic Year, Academic Term, Enrollment Status, Checklist Progress, and Advisor. Include placeholders for merge fields. On each card, round the edges and make the title appear in blue." ### Previewing the dashboard Use **Preview Dashboard** to test the dashboard against an Enrollment record. Review the dashboard to confirm that: - The correct Enrollment record is being used. - Merge fields display the expected values. - Empty values are handled appropriately. - The dashboard is easy to scan. - The display is not overloaded with too much information. A good dashboard should answer the question: **What does a staff member need to know immediately when viewing this Enrollment?** ### Recommended practices - Keep Enrollment dashboards simple. A dashboard should summarize the most important information, not replace the full record. - Use clear labels so staff understand what each value means. For example, **Academic Term** is easier to understand than **Term**. - Use computer-friendly export names. This makes the dashboard easier to build, troubleshoot, and update later. - Avoid adding too many exports or complex joins unless they are necessary. Dashboards should load quickly and provide information at a glance. - Use color or styling sparingly to highlight important statuses, missing requirements, or urgent next steps.