-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupervisor.aspx
85 lines (78 loc) · 5.28 KB
/
Supervisor.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Supervisor.aspx.cs" Inherits="WebApplication1.Supervisor" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="jumbotron">
<h1>Supervisor Dashboard</h1>
<p class="lead">Choose group from dropdown to view all information of assigned FYPs. </p>
<p><asp:Button ID="Button2" runat="server" Text="Give Suggestions" Width="180px" BackColor="#337AB7" CssClass="btn btn-primary btn-lg" Height="40px" OnClick="Button2_Click1" />
<asp:Button ID="Button1" runat="server" Text="Panel Suggestions" Width="180px" BackColor="#337AB7" CssClass="btn btn-primary btn-lg" Height="40px" OnClick="Button1_Click1" />
</p>
<asp:Label ID="gradeNA" runat="server" style="color:red ;" Text="Grade not yet Assigned!"></asp:Label>
</div>
<div class="row">
<div class="col-md-4">
<h2>View FYP Information
</h2>
<asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="true" AutoPostBack="True" onselectedindexchanged="DropDownChange" Width="164px">
<asp:ListItem Text="Select Group..." Value="0" Selected="True"></asp:ListItem>
</asp:DropDownList>
<br />
<asp:Label ID="Label1" runat="server" style="color:black;" Text="Project Title: "></asp:Label> <br />
<asp:Label ID="Label4" runat="server" style="color:black;" Text="Project Description: "></asp:Label> <br />
<asp:Label ID="Label2" runat="server" style="color:black;" Text="Assigned To Panel: "></asp:Label> <br />
<asp:Label ID="Label3" runat="server" style="color:black ;" Text="Group Members:"></asp:Label>
<br /><br />
<asp:GridView ID="GridView1" cellspacing="5" runat="server" CellPadding="4" CssClass="gridClass" ForeColor="#333333" GridLines="both" Width="286px">
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
</div>
<div class="col-md-4">
<h2>Panel Information</h2>
<asp:Label ID="Label5" runat="server" style="color:black;" Text="Panel Title: "></asp:Label> <br />
<asp:Label ID="Label6" runat="server" style="color:black;" Text="Panel Members: "></asp:Label> <br /><br />
<p>
<asp:GridView ID="GridView3" runat="server" CssClass="gridClass" ForeColor="#333333" GridLines="None" Width="228px">
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView></p>
</div>
<div class="col-md-4">
<h2>Deadlines</h2>
<p>
All assigned deadlines for the group</p>
<p>
<asp:GridView ID="GridView2" runat="server" CssClass="gridClass" ForeColor="#333333" GridLines="None" Width="228px">
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
</p>
</div>
</div>
</asp:Content>