added teacher page

This commit is contained in:
Kenneth Jao 2015-01-11 13:31:51 -05:00
parent a9c65489b2
commit 76993822e1
30 changed files with 20 additions and 1 deletions

0
chromebook-checkout-meteor/.meteor/.finished-upgraders Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/.gitignore vendored Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/.id Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/packages Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/platforms Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/release Normal file → Executable file
View File

0
chromebook-checkout-meteor/.meteor/versions Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/admin.css Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/admin.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/admin.js Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/checkout.css Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/checkout.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/checkout.js Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/chromebook.css Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/chromebook.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/chromebook.js Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/initial.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/initial.js Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/login.css Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/login.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/main.css Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/main.html Normal file → Executable file
View File

0
chromebook-checkout-meteor/client/router.js Normal file → Executable file
View File

View File

@ -0,0 +1,17 @@
<template name="teacher">
<div id="center">
<ul class="nav nav-tabs">
<li><a href="#single" role="tab" data-toggle="tab">First</a></li>
<li><a href="#carts" role="tab" data-toggle="tab">Second</a></li>
</ul>
<div id="sign-in" class="tab-pane">
{{> chromebooks }}
</div>d
<div id="carts" class="tab-pane">
{{> carts }}
</div>
</div>
</div>
</template>

0
chromebook-checkout-meteor/collections/chromebooks.js Normal file → Executable file
View File

View File

0
chromebook-checkout-meteor/public/ico/chrico.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

0
chromebook-checkout-meteor/public/ico/favicon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

0
chromebook-checkout-meteor/public/images/bg.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 264 KiB

4
chromebook-checkout-meteor/server/users.js Normal file → Executable file
View File

@ -14,7 +14,9 @@ Meteor.publish('chromebook', function() {
var adminusers = [
"ybq987@gmail.com",
"mminer@bloomfield.org",
"qalieh.yaman90@bloomfield.org"
"qalieh.yaman90@bloomfield.org",
"ksjdragon@gmail.com",
"chthomas@bloomfield.org"
];
for (var i = 0; i < adminusers.length; i++) {
var adminuser = adminusers[i];