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) {
<?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?>
</div>
<ol>
<ol class="questionList">
<li>
<div class="question">
Describe opportunities students should have to learn the outcome.<br />
......@@ -146,7 +146,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) {
<?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?>
</div>
<ol>
<ol class="questionList">
<li>
<div class="question">
Describe opportunities students should have to learn the outcome.<br />
......
......@@ -44,6 +44,7 @@
if (in_array($this->request->getViewType(), array('RecertifyACE'))) {
$recertification = $course->getAceRecertification();
?>
<div id="aceRecertification">
<h2>Recertification</h2>
<dl>
<dt>
......@@ -56,43 +57,61 @@
}
echo implode(', ', $semestersTaught);
?></dd>
<dt>
</dl>
<ol class="questionList">
<li>
<div class="question">
What have assessment data revealed about how the course helps students
achieve the designated Student Learning Outcome(s)? (You might be
able to complete this textbox by copying information found in the Summary
&amp; Conclusion sections from your Department/Program ACE Assessment
Report.)
</dt>
<dd><?php echo nl2br(htmlentities($recertification['dataRevealed'], ENT_COMPAT, 'UTF-8')); ?></dd>
<dt>
</div>
<div class="answer">
<?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
certified Student Learning Outcome(s)? (You might be able to complete
this textbox by copying information found in the Summary &amp; Conclusion
sections from your Department/Program ACE Assessment Report.)
</dt>
<dd><?php echo nl2br(htmlentities($recertification['dataFeedback'], ENT_COMPAT, 'UTF-8')); ?></dd>
<dt>
</div>
<div class="answer">
<?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
from all sections each time the course is taught, indicate how your
department ensures that all sections are taught in accordance with
the ACE plan.
</dt>
<dd><?php echo nl2br(htmlentities($recertification['dataIncomplete'], ENT_COMPAT, 'UTF-8')); ?></dd>
<dt>
</div>
<div class="answer">
<?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
that the assessment process was still being developed, the UCC/ACE
subcommittee expects an explanation of the process. (May be referenced
in the Methods section of the Department ACE Assessment Report.)
</dt>
<dd><?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?></dd>
</dl>
</div>
<div class="answer">
<?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?>
</div>
</li>
</ol>
</div>
<?php }
if (in_array($this->request->getViewType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) {
?>
<div>
<div id="aceCertification">
<h2 id="aceHeading">Ace Course Proposal</h2>
<h3>Outcome(s)</h3>
......@@ -101,7 +120,7 @@
<?php echo $aceOutcome['slo']; ?>:
<?php echo $aceOutcome['description']; ?>
</div>
<ol>
<ol class="questionList">
<li>
<div class="question">
Describe opportunities students should have to learn the outcome.<br />
......
......@@ -77,3 +77,16 @@
text-align: right;
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