Display max student count
This commit is contained in:
parent
a58aa22bbf
commit
d171f19d4e
|
@ -36,7 +36,7 @@ function ClassTable(props) {
|
|||
<Table.Cell>{x.is_cancelled ? 'Cancelled' : moment.utc(x.datetime).local().format('LT')}</Table.Cell>
|
||||
<Table.Cell>{x.instructor_name}</Table.Cell>
|
||||
<Table.Cell>{x.cost === '0.00' ? 'Free' : '$'+x.cost}</Table.Cell>
|
||||
<Table.Cell>{x.student_count}</Table.Cell>
|
||||
<Table.Cell>{x.student_count} {x.max_students && '/ '+x.max_students}</Table.Cell>
|
||||
</Table.Row>
|
||||
)
|
||||
:
|
||||
|
@ -144,7 +144,7 @@ export function ClassDetail(props) {
|
|||
</Table.Row>
|
||||
<Table.Row>
|
||||
<Table.Cell>Students:</Table.Cell>
|
||||
<Table.Cell>{clazz.student_count}</Table.Cell>
|
||||
<Table.Cell>{clazz.student_count} {clazz.max_students && '/ '+clazz.max_students}</Table.Cell>
|
||||
</Table.Row>
|
||||
</Table.Body>
|
||||
</BasicTable>
|
||||
|
|
|
@ -45,7 +45,7 @@ function InstructorClassEditor(props) {
|
|||
/>
|
||||
|
||||
<Form.Input
|
||||
label='Max Number of Students'
|
||||
label='Max Students — Blank for Unlimited'
|
||||
{...makeProps('max_students')}
|
||||
/>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user