initial commit
This commit is contained in:
4
template/form-group.html
Normal file
4
template/form-group.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<label for="group">Selecteer groepen</label>
|
||||
<select name="group[]" id="group" multiple="multiple">
|
||||
{OPTIONS}
|
||||
</select>
|
||||
3
template/form-optgroup.html
Normal file
3
template/form-optgroup.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<optgroup label="{LABEL}">
|
||||
{OPTIONS}
|
||||
</optgroup>
|
||||
1
template/form-option-selected.html
Normal file
1
template/form-option-selected.html
Normal file
@@ -0,0 +1 @@
|
||||
<option value="{VALUE}"{SELECTED}>{TEXT}</option>
|
||||
1
template/form-option.html
Normal file
1
template/form-option.html
Normal file
@@ -0,0 +1 @@
|
||||
<option value="{VALUE}">{TEXT}</option>
|
||||
8
template/form-week.html
Normal file
8
template/form-week.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<label for="week-from">Week vanaf</label>
|
||||
<select name="week-from" id="week-from">
|
||||
{OPTIONS-FROM}
|
||||
</select>
|
||||
<label for="week-to">Week tot</label>
|
||||
<select name="week-to" id="week-to">
|
||||
{OPTIONS-TO}
|
||||
</select>
|
||||
4
template/form-weeks.html
Normal file
4
template/form-weeks.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<label for="weeks">Aantal weken</label>
|
||||
<select name="weeks" id="weeks">
|
||||
{OPTIONS}
|
||||
</select>
|
||||
31
template/form.html
Normal file
31
template/form.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Gecombineerde roosters</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
|
||||
<link rel="stylesheet" href="css/redmond/jquery-ui-1.7.1.custom.css" type="text/css" />
|
||||
<link rel="stylesheet" href="css/ui.slider.extras.css" type="text/css" />
|
||||
<link rel="stylesheet" href="css/jquery.multiselect.css" type="text/css" />
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
|
||||
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.1/jquery-ui.min.js"></script>
|
||||
<script type="text/javascript" src="js/selectToUISlider.jQuery.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.multiselect.js"></script>
|
||||
<script type="text/javascript" src="js/form.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<form action="" method="post">
|
||||
<input type="hidden" name="action" value="view" />
|
||||
<fieldset>
|
||||
<legend>Instellingen</legend>
|
||||
{WEEKS}
|
||||
{WEEK}
|
||||
{GROUP}
|
||||
</fieldset>
|
||||
<input type="submit" value="Roosters ophalen" />
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
4
template/legenda-row.html
Normal file
4
template/legenda-row.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td class="strong">{NAME}</td>
|
||||
<td class="type-{TYPE}"> </td>
|
||||
</tr>
|
||||
11
template/legenda.html
Normal file
11
template/legenda.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<table>
|
||||
<caption>Legenda</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Kleur</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{BODY} </tbody>
|
||||
</table>
|
||||
14
template/page.html
Normal file
14
template/page.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Gecombineerde roosters</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<p><a href=""><< Terug naar formulier</a></p>
|
||||
{LEGENDA}
|
||||
{ROOSTER}
|
||||
</body>
|
||||
</html>
|
||||
1
template/rooster-bar.html
Normal file
1
template/rooster-bar.html
Normal file
@@ -0,0 +1 @@
|
||||
<th class="bar">{GROUP}</th>
|
||||
1
template/rooster-body-row-data.html
Normal file
1
template/rooster-body-row-data.html
Normal file
@@ -0,0 +1 @@
|
||||
<td class="type-{TYPE}{BORDER}" title="{TITLE}"> </td>
|
||||
1
template/rooster-body-row-hour.html
Normal file
1
template/rooster-body-row-hour.html
Normal file
@@ -0,0 +1 @@
|
||||
<th rowspan="{SPAN}" class="hour">{HOUR}</th>
|
||||
1
template/rooster-body-row-minute.html
Normal file
1
template/rooster-body-row-minute.html
Normal file
@@ -0,0 +1 @@
|
||||
<th class="minute">{MINUTE}</th>
|
||||
2
template/rooster-body-row.html
Normal file
2
template/rooster-body-row.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<tr>
|
||||
{HOUR}{MINUTE}{DATA} </tr>
|
||||
22
template/rooster.html
Normal file
22
template/rooster.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<table>
|
||||
<caption>Rooster week <strong>{WEEK}</strong></caption>
|
||||
<colgroup>
|
||||
<col span="2" />
|
||||
<col width="20" span="{COLUMNS}" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2" class="week"></th>
|
||||
<th colspan="{GROUPS}">Ma<br/><small>({MONDAY})</small></th>
|
||||
<th colspan="{GROUPS}">Di<br/><small>({TUESDAY})</small></th>
|
||||
<th colspan="{GROUPS}">Wo<br/><small>({WEDNESDAY})</small></th>
|
||||
<th colspan="{GROUPS}">Do<br/><small>({THURSDAY})</small></th>
|
||||
<th colspan="{GROUPS}">Vr<br/><small>({FRIDAY})</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2" class="corner"> </th>
|
||||
{BAR} </tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{BODY} </tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user