Skip to Main Content

Overview

Media List is a very common design pattern that has an icon, heading, description, and a badge.

Instructions

  1. In Page Designer, select a region
  2. Go to the Property Editor
  3. Under the Region tab
    1. Find Identification → Type, use
    2. Find Appearance → Template, use Blank with Attributes (No Grid)

Demo

  • HR Support Systems

    Maintain Support Systems

    Closed
  • HR software upgrades

    Maintain Support Systems

    On-Hold
  • Arrange for vacation coverage

    Maintain Support Systems

    On-Hold
  • Investigate new Virus Protection software

    Maintain Support Systems

    Open
  • Identify point solutions required

    Load Software

    Closed

Sample SQL Query

select t.ID,
       t.PROJECT,
       t.PARENT_TASK,
       t.TASK_NAME,
       t.STATUS,
       t.ASSIGNED_TO,
       p.project as PROJ_NAME,
       case t.status
         when 'Open'    then 'fa-exclamation-circle-o'
         when 'Closed'  then 'fa-check-circle u-success-text'
         when 'On-Hold' then 'fa-minus-circle u-danger-text'
         when 'Pending' then 'fa-exclamation-triangle u-warning-text'
       end BADGE_STATE
  from EBA_UT_CHART_TASKS t,
       EBA_UT_CHART_PROJECTS p
  where t.project = p.id