Update guide view.
Build and Test App / Build-and-test-App (push) Successful in 35s
Details
Build and Test App / Build-and-test-App (push) Successful in 35s
Details
This commit is contained in:
parent
6177943db7
commit
a6f2ba7f39
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import { EMOJI_ABSENT, EMOJI_BEHAVIOR_GOOD, EMOJI_BEHAVIOR_MEDIOCRE, EMOJI_BEHAVIOR_POOR, EMOJI_PHONE_COMPLIANT, EMOJI_PHONE_NONCOMPLIANT, EMOJI_PRESENT, type Entry } from '@/api/classroom_compliance';
|
||||
import { EMOJI_ABSENT, EMOJI_BEHAVIOR_GOOD, EMOJI_BEHAVIOR_MEDIOCRE, EMOJI_BEHAVIOR_POOR, EMOJI_CLASSROOM_READY, EMOJI_NOT_CLASSROOM_READY, EMOJI_PRESENT, type Entry } from '@/api/classroom_compliance';
|
||||
import EntryTableCell from './entries_table/EntryTableCell.vue';
|
||||
import { ref, type Ref } from 'vue';
|
||||
|
||||
|
@ -8,9 +8,11 @@ const sampleEntry: Ref<Entry | null> = ref({
|
|||
date: '2025-01-01',
|
||||
createdAt: new Date().getTime(),
|
||||
absent: false,
|
||||
phoneCompliant: true,
|
||||
phoneCompliant: null,
|
||||
classroomReadiness: true,
|
||||
behaviorRating: 3,
|
||||
comment: ''
|
||||
comment: '',
|
||||
checklistItems: []
|
||||
})
|
||||
</script>
|
||||
|
||||
|
@ -69,8 +71,8 @@ const sampleEntry: Ref<Entry | null> = ref({
|
|||
<h3>Entries</h3>
|
||||
<p>
|
||||
The main point of <em>Classroom Compliance</em> is to make it easy to keep track of each student's behavior,
|
||||
attendance, and phone usage. On each class' page, you'll find a large table with a row for each student, and a
|
||||
column for each day of the week. This is the <strong>Entries Table</strong>.
|
||||
attendance, and classroom readiness. On each class' page, you'll find a large table with a row for each student,
|
||||
and a column for each day of the week. This is the <strong>Entries Table</strong>.
|
||||
</p>
|
||||
<p>
|
||||
Simply click the "+" icon to add an entry for a student, or click on the day's "+" icon to add an entry for each
|
||||
|
@ -87,7 +89,7 @@ const sampleEntry: Ref<Entry | null> = ref({
|
|||
</table>
|
||||
<ul>
|
||||
<li>Attendance: {{ EMOJI_PRESENT }} for present, and {{ EMOJI_ABSENT }} for absent.</li>
|
||||
<li>Phone Compliance: {{ EMOJI_PHONE_COMPLIANT }} for compliant, and {{ EMOJI_PHONE_NONCOMPLIANT }} for
|
||||
<li>Classroom readiness: {{ EMOJI_CLASSROOM_READY }} for compliant, and {{ EMOJI_NOT_CLASSROOM_READY }} for
|
||||
non-compliant.</li>
|
||||
<li>Behavior: {{ EMOJI_BEHAVIOR_GOOD }} for good behavior, {{ EMOJI_BEHAVIOR_MEDIOCRE }} for mediocre, and {{
|
||||
EMOJI_BEHAVIOR_POOR }} for poor.</li>
|
||||
|
|
Loading…
Reference in New Issue