Skip to content

Commit d82df72

Browse files
Electrika 2024 (#103)
* Fixed registration issue in Electrika. Info Update on Home page * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Refactor register function in views.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update base.html and navbar_dropdown.html templates * Redirect to registration page if user does not exist in ElectrikaUser table * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update team creation and acceptance logic * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix team creation logic and update FAQ section * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add phone number and team-up option to user table --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 5aebef9 commit d82df72

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

corpus/templates/electrika/admin/users.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ <h3>Stats</h3>
3131
<th>S.No.</th>
3232
<th>Name</th>
3333
<th>Email</th>
34+
<th>Phone Number</th>
3435
<th>From NITK?</th>
3536
<th>College Name</th>
3637
<th>IEEE Member?</th>
3738
<th>IEEE Membership Number</th>
3839
<th>In a Team?</th>
40+
<th>Opted for getting teamed up?</th>
3941
</tr>
4042
</thead>
4143
<tbody>
@@ -44,11 +46,13 @@ <h3>Stats</h3>
4446
<td>{{ forloop.counter }}</td>
4547
<td>{{ user.user }}</td>
4648
<td>{{ user.user.email }}</td>
49+
<td>{{ user.user.phone_no }}</td>
4750
<td>{{ user.from_nitk|yesno:"Yes,No" }}</td>
4851
<td>{{ user.college_name }}</td>
4952
<td>{{ user.ieee_member|yesno:"Yes,No" }}</td>
5053
<td>{{ user.ieee_membership_no }}</td>
5154
<td>{{ user.team|yesno:"Yes,No" }}</td>
55+
<td>{{ user.to_be_teamed_up|yesno:"Yes,No" }}</td>
5256
</tr>
5357
{% endfor %}
5458
</tbody>

0 commit comments

Comments
 (0)