Show members application date instead of start date

master
Tanner Collin 4 years ago
parent 2ff436eef5
commit bf0030504a
  1. 1
      apiserver/apiserver/api/serializers.py
  2. 4
      webclient/src/Members.js

@ -106,6 +106,7 @@ class OtherMemberSerializer(serializers.ModelSerializer):
'last_name',
'status',
'current_start_date',
'application_date',
'photo_small',
'photo_large',
'public_bio',

@ -107,7 +107,7 @@ export function Members(props) {
{x.member.preferred_name} {x.member.last_name}
</Item.Header>
<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>
)
@ -174,7 +174,7 @@ export function MemberDetail(props) {
</Table.Row>
<Table.Row>
<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.Cell>Public Bio:</Table.Cell>

Loading…
Cancel
Save