-
Notifications
You must be signed in to change notification settings - Fork 1
/
Home.aspx
198 lines (176 loc) · 7.67 KB
/
Home.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Home.aspx.cs" Inherits="WindingsIndia.Home" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8" />
<title>AppshotERP</title>
<!-- Stylesheets -->
<link href="Admin/css/reset.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/visualize.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/datatables.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/buttons.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/checkboxes.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/inputtags.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/main.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="Admin/css/ie.css" />
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<form id="form1" runat="server">
<div id="gradient">
<div id="stars">
<div id="container">
<header>
<!-- Logo -->
<h1 id="logo">Admin Control Panel</h1>
<!-- User info -->
<%--<div id="userinfo">
<img src="Admin/img/avatar.png" alt="Bram Jetten" />
<div class="intro">
Welcome Bram<br />
You have <a href="#">3 new messages</a>
</div>
</div>--%>
</header>
<!-- The application "window" -->
<div id="application">
<!-- Primary navigation -->
<nav id="primary">
<ul>
<li class="current">
<a href="Home.aspx">
<span class="icon dashboard"></span>
Home
</a>
</li>
<li>
<a href="IssueIndents.aspx">
<span class="icon pencil"></span>
Issue Indents
</a>
</li>
<li>
<a href="MaterialInward.aspx">
<span class="icon tables"></span>
Material Inward
</a>
</li>
<li>
<a href="/charts">
<span class="icon chart"></span>
<span class="badge">4</span>
Charts
</a>
</li>
<li>
<a href="/notifications">
<span class="icon modal"></span>
Notifcations
</a>
</li>
<li>
<a href="/gallery">
<span class="icon gallery"></span>
Gallery
</a>
</li>
<li>
<a href="/buttons">
<span class="icon anchor"></span>
Icons/buttons
</a>
</li>
</ul>
<input type="text" id="search" placeholder="Realtime search..." />
</nav>
<!-- Secondary navigation -->
<nav id="secondary">
<ul>
<li class="current"><a href="#">Main tab</a></li>
<%--<li><a href="#">Optional second tab</a></li>
<li><a href="#">Optional third tab</a></li>--%>
</ul>
</nav>
<!-- The content -->
<section id="content">
<h2 class="custom">List of Open Indents</h2>
<div class="left clear custom">
<asp:Repeater ID="rptOpenIndents" runat="server">
<HeaderTemplate>
<table id="tblOpenIndents" class="datatable">
<thead>
<tr class="center">
<th >Assembly ID</th>
<th >Year</th>
<th >Indent Number</th>
<th>Quantity Due</th>
<th>Vendor</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr class="center">
<td class="center"><%# Eval("AssemblyID") %></td>
<td><%# Eval("FiscalYear") %></td>
<td><%# Eval("IndentNumber") %></td>
<td><%# String.Format("{0:0.####}",Eval("QuantityDue")) %></td>
<td><%# Eval("Vendor") %></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
<h2>Out of Stock Raw Materials</h2>
<asp:Repeater ID="rptRawMaterials" runat="server">
<HeaderTemplate>
<table id="tblRawMaterials" class="datatable">
<thead>
<tr>
<th class="center">Raw Material ID</th>
<th >Description</th>
<th >Current Stock</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td class="center"><%# Eval("RawMaterialID") %></td>
<td><%# Eval("Description") %></td>
<td><%# String.Format("{0:0.####}",Eval("Stock")) %></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
</div>
</section>
</div>
<footer id="copyright">© Copyrights. All rights reserved by Appshot.in</footer>
</div>
</div>
</div>
</form>
<!-- Javascripts -->
<script src="Admin/js/jquery.js" type="text/javascript"></script>
<script src="Admin/js/notifications.js" type="text/javascript"></script>
<script src="Admin/js/excanvas.js" type="text/javascript"></script>
<script src="Admin/js/jquery.checkboxes.js" type="text/javascript"></script>
<script src="Admin/js/jquery.datatables.js" type="text/javascript"></script>
<script src="Admin/js/jquery.inputtags.js" type="text/javascript"></script>
<script src="Admin/js/jquery.livesearch.js" type="text/javascript"></script>
<script src="Admin/js/jquery.placeholder.js" type="text/javascript"></script>
<script src="Admin/js/jquery.selectskin.js" type="text/javascript"></script>
<script src="Admin/js/jquery.validate.js" type="text/javascript"></script>
<script src="Admin/js/jquery.visualize.js" type="text/javascript"></script>
<script src="Admin/js/jquery.wymeditor.js" type="text/javascript"></script>
<script src="Admin/js/application.js" type="text/javascript"></script>
</body>
</html>