<%@ Control Language="C#" AutoEventWireup="true" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MySubjectST" %>
我的评审任务:我的<%= this.Query.RecordCount %>个评审任务
名称: <%= new HtmlText("Name", this.Name) { Width = 120 }%> 日期从 <%= new HtmlText("CutoffTime", this.CutoffTime.ToShortDate()) { Width = 80 }%> 至 <%= new HtmlText("EndTime", this.EndTime.ToShortDate()) { Width = 80 }%> <%= new HtmlHidden("Key","MySubjectST") %> <%= new HtmlSubmit("查询") %> <%= new HtmlReset("清除") { Class="btn"}%>
<% for (int i = 0; i <= this.ListSTUser.Count - 1; i++) { var subject = this.ListSTUser[i].ParentSubject; %> <% } %>
优课评比 名称 状态 优课评比日期 截止加入日期
  • <%= new HtmlAnchor( new HtmlImg(SettingGroup.SubjectCover(subject), subject.Name) { Width=100, Height=62, OnErrorImg=SettingGroup.DefaultImg} ) { Href = WebUrl.SubjectView(subject.Guid), Target = "_blank", Title = subject.Name }%>
<%= new HtmlAnchor(subject.Name) { Href = WebUrl.SubjectView(subject.Guid), Target = "_blank" }%> <% int videoCount; int scoreVideoCount; int scoreVideoPartCount; CreateInstance.STUserDao.UserScore(this.ListSTUser[i], out videoCount, out scoreVideoCount, out scoreVideoPartCount); %>
评审视频:<%= videoCount %>
已评课:<%= scoreVideoCount %> <% if (scoreVideoPartCount > 0) { %>
评审未完视频:<%= scoreVideoPartCount %> <% } %>

<% var classExamine = ""; if (subject.Examine == (int)AVA.ResourcesPlatform.Model.Pub.SubjectExamineEnum.审核通过) { classExamine = "pass"; } else if (subject.Examine == (int)AVA.ResourcesPlatform.Model.Pub.SubjectExamineEnum.审核不通过) { } else { classExamine = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.SubjectExamineEnum)subject.Examine).Define() %> <% var classStatus = ""; if (subject.Status == (int)AVA.ResourcesPlatform.Model.Pub.SubjectStatusEnum.启动) { classStatus = "pass"; } else { classStatus = ""; } %>
<%= ((AVA.ResourcesPlatform.Model.Pub.SubjectStatusEnum)subject.Status).Define() %>

<%= subject.BeginTime.ToShortDate()%>

<%= subject.EndTime.ToShortDate()%>
<%= subject.CutoffTime.ToShortDate()%>
<%= new PagerAjaxInstance(this) { RecordCount = this.Query.RecordCount, PageRecordSize = this.Query.PageSize, PageIndex = this.Query.PageIndex, PageJsFn = WebUrl.MySubjectST(int.MaxValue, this.Name, this.CutoffTime.ToString(null), this.EndTime.ToString(null)) }.ToHtml()%>