Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove missed columns with URL field for tasks #2749

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions amy/templates/workshops/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ <h3>Tasks</h3>
<th class="badges-column">Some badges <i class="fas fa-question-circle" data-toggle="tooltip"
title="Only Instructor or Trainer badges shown."></i></th>
<th>Person</th>
<th>URL</th>
<th>Role</th>
<th>Member site seat <i class="fas fa-question-circle" data-toggle="tooltip" title="Applies only to TTT events"></i></th>
<th>Open applicant <i class="fas fa-question-circle" data-toggle="tooltip" title="Applies only to TTT events with open applications"></i></th>
Expand All @@ -159,7 +158,6 @@ <h3>Tasks</h3>
{% consent_agreed t.person.active_consents TermEnum.MAY_CONTACT as may_contact %}
{% if t.person.email and may_contact %} &lt;{{ t.person.email|urlize }}&gt;{% endif %}
</td>
<td>{{ t.url|default:"&mdash;"|urlize_newtab }}</td>
<td>{{ t.role.name }}</td>
<td>
{% if t.seat_membership %}
Expand Down
2 changes: 0 additions & 2 deletions amy/templates/workshops/event_edit_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<table class="table table-striped">
<tr>
<th>Person</th>
<th>URL</th>
<th>Role</th>
<th>Member site seat <i class="fas fa-question-circle" data-toggle="tooltip" title="Applies only to TTT events"></i></th>
<th>Open applicant <i class="fas fa-question-circle" data-toggle="tooltip" title="Applies only to TTT events with open applications"></i></th>
Expand All @@ -41,7 +40,6 @@
{% consent_agreed t.person.active_consents TermEnum.MAY_CONTACT as may_contact %}
{% if t.person.email and may_contact %} &lt;{{ t.person.email|urlize }}&gt;{% endif %}
</td>
<td>{{ t.url|default:"—"|urlize_newtab }}</td>
<td>{{ t.role.name }}</td>
<td>
{% if t.seat_membership %}
Expand Down
Loading