Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Helper Text for Candidate Decider Input Format #496

Merged
merged 4 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions frontend/public/sample_candidate_decider_input.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
NetID,First Name,Last Name,What is your favorite tech stack?
aaa111,Alder,Alderson,MERN
ddd222,Donald,Donaldson,MEAN
axc2,Andrew,Chen,FERN
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ const CandidateDeciderInstanceCreator = ({
<Form success={success}>
<Form.Input label="Name" value={name} onChange={(e) => setName(e.target.value)} />
<input type="file" accept=".csv" onChange={handleFileUpload} key={fileInKey || ''} />
<label>
{' '}
Format: .csv with at least a "NetID", "First Name", and "Last Name" column.{' '}
<a href="/sample_candidate_decider_input.csv">Download sample file here.</a>
</label>
<Message>
All leads and IDOL admins have permission to all Candidate Decider instances
</Message>
Expand Down
Loading