stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

index.html (1013B)


      1 {% extends 'base.html' %}
      2 
      3 {% block title %}Employees/Crew/Roles{% endblock %}
      4 
      5 {% block content %}
      6 <table> <tr><th>Name</th><th>Role</th><th>Active Employee</th></tr>
      7 	<tr>
      8 		<td><input type="button" onClick="alert('route to /user<userid>')" value="Brennen T. Mazur"></td><td><select><option value="Crew Lead" selected>Crew Lead</option><option value="Crew">Crew</option><option value="Accounting">Accounting</option><option value="Admin">Admin</option></select></td><td><input type="checkbox" name="activeEmployee" checked></td>
      9 	</tr>
     10 	<tr>
     11 		<td><input type="button" onClick="alert('route to /user<userid>')" value="Nikolas Mazur"></td><td><select><option value="Crew" selected>Crew</option><option value="Crew Lead">Crew Lead</option><option value="Accounting">Accounting</option><option value="Admin">Admin</option></select></td><td><input type="checkbox" name="activeEmployee"></td>
     12 	</tr>
     13 	<tr><td><input type="button" onClick="alert('route to /newuser')" value="[new Employee]"</td></tr>
     14 
     15 {% endblock %}