Show if a member has signed up for Spaceport
This commit is contained in:
parent
4420a675d3
commit
7f9dd5119b
|
@ -498,6 +498,12 @@ export function AdminMemberInfo(props) {
|
||||||
<Table.Cell>Emergency Contact Phone:</Table.Cell>
|
<Table.Cell>Emergency Contact Phone:</Table.Cell>
|
||||||
<Table.Cell>{member.emergency_contact_phone || 'None'}</Table.Cell>
|
<Table.Cell>{member.emergency_contact_phone || 'None'}</Table.Cell>
|
||||||
</Table.Row>
|
</Table.Row>
|
||||||
|
|
||||||
|
<Table.Row>
|
||||||
|
<Table.Cell>On Spaceport:</Table.Cell>
|
||||||
|
<Table.Cell>{member.user ? 'Yes' : 'No'}</Table.Cell>
|
||||||
|
</Table.Row>
|
||||||
|
|
||||||
<Table.Row>
|
<Table.Row>
|
||||||
<Table.Cell>Public Bio:</Table.Cell>
|
<Table.Cell>Public Bio:</Table.Cell>
|
||||||
</Table.Row>
|
</Table.Row>
|
||||||
|
|
|
@ -48,7 +48,7 @@ function ResetForm() {
|
||||||
<Form.Button loading={loading} error={error.non_field_errors}>
|
<Form.Button loading={loading} error={error.non_field_errors}>
|
||||||
Submit
|
Submit
|
||||||
</Form.Button>
|
</Form.Button>
|
||||||
{success && <div>Success!</div>}
|
{success && <div>Success! Be sure to check your spam folder.</div>}
|
||||||
</Form>
|
</Form>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user