-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
34 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
.form-item | ||
= f.label :experiences, 'プログラミング経験(複数選択可)', class: 'a-form-label' | ||
.checkboxes | ||
ul.checkboxes__items | ||
= f.collection_check_boxes :experiences, User.experiences.pairs, :second, :first, class: 'label-checkbox' do |b| | ||
li.checkboxes__item | ||
= b.check_box(class: 'a-toggle-checkbox') | ||
= b.label { b.text } | ||
|
||
.a-form-help | ||
p 何もチェックしない場合は 「未経験」 になります。 | ||
p この情報は他のフィヨルドブートキャンプ参加者には公開されません。 | ||
p | ||
| プログラミング経験の有無について、以下のいずれかに該当する場合は該当する | ||
| 項目にチェックを入れてください。多くの方はどの項目にも該当しない「未経験」であるため、 | ||
| 心配なさらずにご回答ください。 | ||
| この情報は他のフィヨルドブートキャンプの参加者に公開されることはありません。 | ||
|
||
ul.block-checks.is-2-items.mt-4 | ||
= f.collection_check_boxes :experiences, User.experiences.pairs, :second, :first, class: 'label-checkbox' do |b| | ||
li.block-checks__item | ||
.a-block-check.is-checkbox | ||
= b.check_box(class: 'a-toggle-checkbox') | ||
label.a-block-check__label.is-ta-left | ||
= b.label { b.text } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
.form-item | ||
= f.label :job_seeker, class: 'a-form-label' | ||
= f.label :job_seeker, class: 'a-form-label' do | ||
| #{User.human_attribute_name :job_seeker}(任意) | ||
ul.block-checks.is-1-item | ||
li.block-checks__item | ||
.a-block-check.is-checkbox | ||
= f.check_box :job_seeker, class: 'a-toggle-checkbox' | ||
= f.label :job_seeker, class: 'a-block-check__label is-ta-left' do | ||
= User.human_attribute_name :job_seeker | ||
| 就職サポートを希望する | ||
.a-form-help | ||
p | ||
| 就職を希望する場合は、就職相談や就職先企業の紹介を行います(フィヨルドブートキャンプが紹介する企業に就職することが必須ではありません)。状況に合わせていつでも変更できます。この情報は他のフィヨルドブートキャンプ参加者には公開されません。 | ||
| 就職サポートを希望する場合、就職相談、提出書類のレビュー、 | ||
| 面接対策、企業の紹介など、就職に関する広範なサポートを提供します。 | ||
| 状況に応じて、サポートの内容をいつでも変更することが可能です。 | ||
| この情報は他のフィヨルドブートキャンプ参加者には公開されません。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters