Show members application date instead of start date
This commit is contained in:
parent
2ff436eef5
commit
bf0030504a
|
@ -106,6 +106,7 @@ class OtherMemberSerializer(serializers.ModelSerializer):
|
||||||
'last_name',
|
'last_name',
|
||||||
'status',
|
'status',
|
||||||
'current_start_date',
|
'current_start_date',
|
||||||
|
'application_date',
|
||||||
'photo_small',
|
'photo_small',
|
||||||
'photo_large',
|
'photo_large',
|
||||||
'public_bio',
|
'public_bio',
|
||||||
|
|
|
@ -107,7 +107,7 @@ export function Members(props) {
|
||||||
{x.member.preferred_name} {x.member.last_name}
|
{x.member.preferred_name} {x.member.last_name}
|
||||||
</Item.Header>
|
</Item.Header>
|
||||||
<Item.Description>Status: {x.member.status || 'Unknown'}</Item.Description>
|
<Item.Description>Status: {x.member.status || 'Unknown'}</Item.Description>
|
||||||
<Item.Description>Joined: {x.member.current_start_date || 'Unknown'}</Item.Description>
|
<Item.Description>Joined: {x.member.application_date || 'Unknown'}</Item.Description>
|
||||||
</Item.Content>
|
</Item.Content>
|
||||||
</Item>
|
</Item>
|
||||||
)
|
)
|
||||||
|
@ -174,7 +174,7 @@ export function MemberDetail(props) {
|
||||||
</Table.Row>
|
</Table.Row>
|
||||||
<Table.Row>
|
<Table.Row>
|
||||||
<Table.Cell>Joined:</Table.Cell>
|
<Table.Cell>Joined:</Table.Cell>
|
||||||
<Table.Cell>{member.current_start_date || 'Unknown'}</Table.Cell>
|
<Table.Cell>{member.application_date || 'Unknown'}</Table.Cell>
|
||||||
</Table.Row>
|
</Table.Row>
|
||||||
<Table.Row>
|
<Table.Row>
|
||||||
<Table.Cell>Public Bio:</Table.Cell>
|
<Table.Cell>Public Bio:</Table.Cell>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user