<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Viewing Daily Attendance for teachers in Community Forum</title>
    <link>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/527008#M24959</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do other schools allow their teachers to view the daily attendance for the whole building?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We used to have a customization that showed attendance in the daily bulletin (in real time), but that is no longer supported.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was just wondering what other schools use in order to view attendance in real time for staff?&amp;nbsp; Is this an additional plugin? If so, what is it called?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2024 10:59:00 GMT</pubDate>
    <dc:creator>lavertya</dc:creator>
    <dc:date>2024-09-26T10:59:00Z</dc:date>
    <item>
      <title>Viewing Daily Attendance for teachers</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/527008#M24959</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do other schools allow their teachers to view the daily attendance for the whole building?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We used to have a customization that showed attendance in the daily bulletin (in real time), but that is no longer supported.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was just wondering what other schools use in order to view attendance in real time for staff?&amp;nbsp; Is this an additional plugin? If so, what is it called?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 10:59:00 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/527008#M24959</guid>
      <dc:creator>lavertya</dc:creator>
      <dc:date>2024-09-26T10:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Daily Attendance for teachers</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/528801#M25155</link>
      <description>&lt;P&gt;I would love to be able to see this as well. Has anyone provided you with an answer/solution?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 13:35:24 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/528801#M25155</guid>
      <dc:creator>mikerubin21</dc:creator>
      <dc:date>2024-10-15T13:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Daily Attendance for teachers</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/528802#M25156</link>
      <description>&lt;P&gt;Good Morning,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had to reach out to local districts and see what html code was used.&amp;nbsp; For me, it shows entire district attendance and I haven't figured out how to separate it yet, but it's better than nothing.&amp;nbsp; (Luckily, we are a small one building district!)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I got:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;table border="1" cellspacing="0" cellpadding="4"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;tr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Student&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Current Grade&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Attendance Date&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Code&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Comment&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Time In&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td class="bold"&amp;gt;Time Out&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;~[tlist_sql;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;s.lastfirst,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;s.grade_level,&lt;/P&gt;&lt;P&gt;to_date(att.att_date,'MM/DD/YY'),&lt;/P&gt;&lt;P&gt;ac.att_code,&lt;/P&gt;&lt;P&gt;att.att_comment,&lt;/P&gt;&lt;P&gt;case when attt.time_in is null then '0' else to_char(attt.time_in) end timein, case when attt.time_out is null then '0' else&lt;/P&gt;&lt;P&gt;to_char(attt.time_out) end timeout&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM attendance att&lt;/P&gt;&lt;P&gt;INNER JOIN attendance_code ac ON att.attendance_codeid = ac.ID&lt;/P&gt;&lt;P&gt;left outer JOIN attendance_time attt on attt.attendanceid = att.id&lt;/P&gt;&lt;P&gt;INNER JOIN students s on att.studentid = s.id&lt;BR /&gt;JOIN schools sch on att.schoolid = sch.school_number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WHERE att.att_date = '~[bulletindate;0]'&lt;/P&gt;&lt;P&gt;AND att.yearid = ~(curyearid)&lt;/P&gt;&lt;P&gt;AND att.att_mode_code = 'ATT_ModeDaily'&lt;/P&gt;&lt;P&gt;AND ac.att_code is not null&lt;/P&gt;&lt;P&gt;ORDER BY sch.name, s.grade_level, s.lastfirst,att.Att_Date;alternatecolor]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;tr class="oddrow"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(s.lastfirst;t)&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(s.grade_level;l)&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(att.att_date;d)&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(ac.att_code;t)&amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(att.att_comment;t) &amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(timein;l;if.test=0;then;else=~(timein;l;format=time)) &amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;td&amp;gt;~(timeout;l;if.test=0;then;else=~(timeout;l;format=time)) &amp;lt;/td&amp;gt; &amp;lt;/tr&amp;gt; [/tlist_sql] &amp;lt;/table&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 13:39:01 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Viewing-Daily-Attendance-for-teachers/m-p/528802#M25156</guid>
      <dc:creator>lavertya</dc:creator>
      <dc:date>2024-10-15T13:39:01Z</dc:date>
    </item>
  </channel>
</rss>

