Skip to content
Snippets Groups Projects
Commit 1a6703bc authored by Tim Steiner's avatar Tim Steiner
Browse files

Visual updates to the display of ACE questions.

parent f97d2d6a
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) { ...@@ -69,7 +69,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) {
<?php echo $aceOutcome['slo']; ?>: <?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?> <?php echo $aceOutcome['description']; ?>
</div> </div>
<ol> <ol class="questionList">
<li> <li>
<div class="question"> <div class="question">
Describe opportunities students should have to learn the outcome.<br /> Describe opportunities students should have to learn the outcome.<br />
...@@ -146,7 +146,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) { ...@@ -146,7 +146,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) {
<?php echo $aceOutcome['slo']; ?>: <?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?> <?php echo $aceOutcome['description']; ?>
</div> </div>
<ol> <ol class="questionList">
<li> <li>
<div class="question"> <div class="question">
Describe opportunities students should have to learn the outcome.<br /> Describe opportunities students should have to learn the outcome.<br />
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
if (in_array($this->request->getViewType(), array('RecertifyACE'))) { if (in_array($this->request->getViewType(), array('RecertifyACE'))) {
$recertification = $course->getAceRecertification(); $recertification = $course->getAceRecertification();
?> ?>
<div id="aceRecertification">
<h2>Recertification</h2> <h2>Recertification</h2>
<dl> <dl>
<dt> <dt>
...@@ -56,43 +57,61 @@ ...@@ -56,43 +57,61 @@
} }
echo implode(', ', $semestersTaught); echo implode(', ', $semestersTaught);
?></dd> ?></dd>
<dt> </dl>
<ol class="questionList">
<li>
<div class="question">
What have assessment data revealed about how the course helps students What have assessment data revealed about how the course helps students
achieve the designated Student Learning Outcome(s)? (You might be achieve the designated Student Learning Outcome(s)? (You might be
able to complete this textbox by copying information found in the Summary able to complete this textbox by copying information found in the Summary
&amp; Conclusion sections from your Department/Program ACE Assessment &amp; Conclusion sections from your Department/Program ACE Assessment
Report.) Report.)
</dt> </div>
<dd><?php echo nl2br(htmlentities($recertification['dataRevealed'], ENT_COMPAT, 'UTF-8')); ?></dd> <div class="answer">
<dt> <?php echo nl2br(htmlentities($recertification['dataRevealed'], ENT_COMPAT, 'UTF-8')); ?>
</div>
</li>
<li>
<div class="question">
How have those assessment data been used to help the course meet the How have those assessment data been used to help the course meet the
certified Student Learning Outcome(s)? (You might be able to complete certified Student Learning Outcome(s)? (You might be able to complete
this textbox by copying information found in the Summary &amp; Conclusion this textbox by copying information found in the Summary &amp; Conclusion
sections from your Department/Program ACE Assessment Report.) sections from your Department/Program ACE Assessment Report.)
</dt> </div>
<dd><?php echo nl2br(htmlentities($recertification['dataFeedback'], ENT_COMPAT, 'UTF-8')); ?></dd> <div class="answer">
<dt> <?php echo nl2br(htmlentities($recertification['dataFeedback'], ENT_COMPAT, 'UTF-8')); ?>
</div>
</li>
<li>
<div class="question">
If your assessment plan does not include collection of student work If your assessment plan does not include collection of student work
from all sections each time the course is taught, indicate how your from all sections each time the course is taught, indicate how your
department ensures that all sections are taught in accordance with department ensures that all sections are taught in accordance with
the ACE plan. the ACE plan.
</dt> </div>
<dd><?php echo nl2br(htmlentities($recertification['dataIncomplete'], ENT_COMPAT, 'UTF-8')); ?></dd> <div class="answer">
<dt> <?php echo nl2br(htmlentities($recertification['dataIncomplete'], ENT_COMPAT, 'UTF-8')); ?>
</div>
</li>
<li>
<div class="question">
If the response in the original proposal for ACE certification indicated If the response in the original proposal for ACE certification indicated
that the assessment process was still being developed, the UCC/ACE that the assessment process was still being developed, the UCC/ACE
subcommittee expects an explanation of the process. (May be referenced subcommittee expects an explanation of the process. (May be referenced
in the Methods section of the Department ACE Assessment Report.) in the Methods section of the Department ACE Assessment Report.)
</dt> </div>
<dd><?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?></dd> <div class="answer">
</dl> <?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?>
</div>
</li>
</ol>
</div>
<?php } <?php }
if (in_array($this->request->getViewType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) { if (in_array($this->request->getViewType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) {
?> ?>
<div> <div id="aceCertification">
<h2 id="aceHeading">Ace Course Proposal</h2> <h2 id="aceHeading">Ace Course Proposal</h2>
<h3>Outcome(s)</h3> <h3>Outcome(s)</h3>
...@@ -101,7 +120,7 @@ ...@@ -101,7 +120,7 @@
<?php echo $aceOutcome['slo']; ?>: <?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?> <?php echo $aceOutcome['description']; ?>
</div> </div>
<ol> <ol class="questionList">
<li> <li>
<div class="question"> <div class="question">
Describe opportunities students should have to learn the outcome.<br /> Describe opportunities students should have to learn the outcome.<br />
......
...@@ -77,3 +77,16 @@ ...@@ -77,3 +77,16 @@
text-align: right; text-align: right;
padding-right: 0.5em; padding-right: 0.5em;
} }
.questionList li {
margin: 1em 0;
}
.questionList .question {
font-weight: bold;
margin-bottom: 1em;
}
#aceRecertification .questionList {
list-style-type: upper-alpha;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment