Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jalex0823 committed Nov 12, 2023
1 parent 8530253 commit 1498c26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h1>Texas Pipe & Supply IT Department SQL Server Personnel Right Assignments</h1
<td>{{ person.Position }}</td>
<td>{{ person.Email }}</td>
<td class="privileges">
<select class="form-control" name="privileges_{{ person.Last_Name }}" required id="privileges_{{ person.Last_Name }}">
<select class="form-control" name="privileges_{{ person.Last_Name }}" id="privileges_{{ person.Last_Name }}">
<option value="">Select...</option>
{% for dept in departments %}
<option value="{{ dept.Assumed_Database_Access }}">{{ dept.Assumed_Database_Access }}</option>
Expand All @@ -87,7 +87,7 @@ <h1>Texas Pipe & Supply IT Department SQL Server Personnel Right Assignments</h1
<button type="button" onclick="appendPrivilege('privileges_{{ person.Last_Name }}', 'remarks_{{ person.Last_Name }}')">Append Privilege</button>
</td>
<td class="remarks">
<textarea class="form-control" name="remarks_{{ person.Last_Name }}" required id="remarks_{{ person.Last_Name }}"></textarea>
<textarea class="form-control" name="remarks_{{ person.Last_Name }}" id="remarks_{{ person.Last_Name }}"></textarea>
</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 1498c26

Please sign in to comment.