Courses Table View

Courses

Name Length Instructors View Action
The Official Quickstart Course for the LifterLMS Community teamtangible
View Enroll
The Official Quickstart Course for LifterLMS 1 Day teamtangible
View Enroll
LifterLMS Quiz System Masterclass 3 days CurtisMurray
teamtangible
View Enroll


Markup: courses table:

  <Table per_page=3 sort=title sort_order=desc>

    <Filter>
      <h3 >Courses</h3>
      <div>
        <input type="text"
               action="search"
               columns="title,length,instructors"
               placeholder="Search"
        >
      </div>
    </Filter>

    <Head>
      <Col name=title sort_type=string>Name</Col>
      <Col name=length sort_type=string>Length</Col>
      <Col name=instructors sort_type=string>Instructors</Col>
      <Col name=view >View</Col>
      <Col name=action>Action</Col>
    </Head>

    <RowLoop type=lifter_course>
      <Col>
      <Field title />
      </Col>
      <Col>
      <Field length />
      </Col>
      <Col>
      <Loop field="instructors">
        <Field name /><br/>
      </Loop>
      </Col>
      <Col>
      <a href="{Field url}">View</a>
      </Col>
      <Col>
      Enroll
      </Col>
    </RowLoop>

    <Paginate>
      Page <Field current /> of <Field total />
    </Paginate>

    <Empty>
      <p>Empty</p>
    </Empty>

  </Table>