<table id="tabledata" class="tablecenter" style=" position: static; top:50%;">
<tr>
<th>Username</th>
<th>Email</th>
<th>Role</th>
<th>Action</th>
<th>Remove User</th>
</tr>
{% for user in all %}
<tr>
<td>{{user.first_name}} {{user.last_name}}</td>
<td>{{user.email}}</td>
<td>{% if user.is_staff %} Admin {% else %} Practitioner {% endif %}</td>
<td><a class="openButton" onclick="openForm()">Edit</a></td>
<td><a href="{% url 'delete_user' pk=user.id %}" class="openButton">Delete</a></td>
</tr>
{% endfor %}
After running the server on local, the page gives syntax error.