2016-02-06 15:21:25 -05:00
|
|
|
<head>
|
|
|
|
|
<title>scheduleac</title>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Welcome to Meteor!</h1>
|
|
|
|
|
{{> loginButtons}}
|
|
|
|
|
{{> client}}
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
2016-02-07 02:03:06 -05:00
|
|
|
<template name="day">
|
|
|
|
|
<p>{{pretext}} {{aftertext}} </p>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template name="recent">
|
|
|
|
|
<p>{{pretext}} {{aftertext}} </p>
|
|
|
|
|
</template>
|
|
|
|
|
|
2016-02-06 15:21:25 -05:00
|
|
|
|
|
|
|
|
<template name="client">
|
2016-02-07 02:03:06 -05:00
|
|
|
<div>
|
|
|
|
|
{{#each mostrecent}}
|
|
|
|
|
{{> recent}}
|
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
{{#each sched}}
|
|
|
|
|
<div>
|
|
|
|
|
{{> day}}
|
|
|
|
|
</div>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
|
2016-02-07 01:46:01 -05:00
|
|
|
{{#if allowed}}
|
2016-02-07 02:04:30 -05:00
|
|
|
<input type="text" class="form-control" id="date">
|
2016-02-07 01:46:01 -05:00
|
|
|
<select id="post">
|
|
|
|
|
<option value="AC">AC</option>
|
|
|
|
|
<option value="Health">Health</option>
|
|
|
|
|
</select>
|
2016-02-06 15:21:25 -05:00
|
|
|
|
2016-02-07 01:46:01 -05:00
|
|
|
<button>Submit</button>
|
|
|
|
|
{{/if}}
|
2016-02-07 02:03:06 -05:00
|
|
|
</template>
|