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

[CCAP-563] Add questions about being a child care provider to FAQ #1120

Merged
merged 5 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,13 @@ faq.questions-about-the-process.how-do-i-maintain-benefits.a-renewal-form=About
faq.questions-about-the-process.how-long-will-it-take=After I apply, how long will it take to get child care assistance?
faq.questions-about-the-process.how-long-will-it-take.you-should-get-an-application-response=You should get an application response within 45 calendar days. This is counted from the date your completed application was received by your CCR&R.

faq.questions-about-being-a-child-care-provider.header=Questions about being a child care provider
faq.questions-about-being-a-child-care-provider.can-I-have-other-jobs=Can I have other jobs in addition to providing child care?
faq.questions-about-being-a-child-care-provider.can-I-have-other-jobs.answer=You can have other jobs, but the work hours can't overlap. To qualify as a CCAP child care provider, you can?t work another job while you are taking care of children.
spokenbird marked this conversation as resolved.
Show resolved Hide resolved
faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work=How do CCAP payments work?
faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work.answer-1=Child care providers can be paid by paper check, direct deposit, or debit card. To find out which payment methods you can use, call the CCAP office at (309) 205-3070 Option 2
spokenbird marked this conversation as resolved.
Show resolved Hide resolved
faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work.answer-2=For more information about CCAP payments, visit <a href="https://www.dhs.state.il.us/page.aspx?item=31637" target="_blank">this website</a>.
spokenbird marked this conversation as resolved.
Show resolved Hide resolved

#contact-provider-message
contact-provider-message.title=Message provider
contact-provider-message.header=Message your child care provider
Expand Down
8 changes: 7 additions & 1 deletion src/main/resources/templates/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1 class="spacing-below-35" th:text="#{faq.title}"></h1>
<section class="slab slab--white">
<div class="grid">
<nav class="grid__item width-one-third" th:with="sections = ${ {
'general-questions', 'questions-about-the-online-application', 'questions-about-child-care', 'questions-about-the-process'} }">
'general-questions', 'questions-about-the-online-application', 'questions-about-child-care', 'questions-about-the-process', 'questions-about-being-a-child-care-provider'} }">
<p class="h3" th:text="#{faq.toc.header}"></p>
<div class="spacing-below-15" th:each="section : ${sections}">
<a th:href="'#' + ${section}" th:text="#{'faq.' + ${section} + '.header'}"></a>
Expand Down Expand Up @@ -234,6 +234,12 @@ <h3 class="h3" th:text="#{faq.questions-about-the-process.how-do-i-maintain-bene
<p th:text="#{faq.questions-about-the-process.how-do-i-maintain-benefits.a-renewal-form}"></p>
<h3 class="h3" th:text="#{faq.questions-about-the-process.how-long-will-it-take}"></h3>
<p th:text="#{faq.questions-about-the-process.how-long-will-it-take.you-should-get-an-application-response}"></p>
<h2 id="questions-about-being-a-child-care-provider" class="h2" th:text="#{faq.questions-about-being-a-child-care-provider.header}"></h2>
<h3 class="h3" th:text="#{faq.questions-about-being-a-child-care-provider.can-I-have-other-jobs}"></h3>
<p th:text="#{faq.questions-about-being-a-child-care-provider.can-I-have-other-jobs.answer}"></p>
<h3 class="h3" th:text="#{faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work}"></h3>
<p th:text="#{faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work.answer-1}"></p>
<p th:utext="#{faq.questions-about-being-a-child-care-provider.how-do-ccap-payments-work.answer-2}"></p>
</div>
</div>
</div>
Expand Down