Skip to content

Commit

Permalink
Fix copy/paste issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanzhou committed Jan 2, 2024
1 parent 027d1b4 commit 5cb03a2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions templates/individual_registration.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h5 class="card-header">Registration Detail</h5>
{% endif %}

<br />
HuBMAP service(s) access requested: <br />
SenNet service(s) access requested: <br />
<ul>
{% for req in data.access_requests_list %}
<li>{{ req }} </li>
Expand All @@ -45,20 +45,20 @@ <h5 class="card-header">Registration Detail</h5>

<br />

{% if 'HuBMAP Data Via Globus' in data.stage_user.access_requests %}
Globus username to be used for HuBMAP Data group access: {{ data.stage_user.globus_identity }} <br />
{% if 'SenNet Data Via Globus' in data.stage_user.access_requests %}
Globus username to be used for SenNet Data group access: {{ data.stage_user.globus_identity }} <br />
{% endif %}

{% if 'HuBMAP Google Drive Share' in data.stage_user.access_requests %}
Google account for HuBMAP Google Drive Share: {{ data.stage_user.google_email }} <br />
{% if 'SenNet Google Drive Share' in data.stage_user.access_requests %}
Google account for SenNet Google Drive Share: {{ data.stage_user.google_email }} <br />
{% endif %}

{% if 'HuBMAP GitHub Repository' in data.stage_user.access_requests %}
{% if 'SenNet GitHub Repository' in data.stage_user.access_requests %}
Github username: {{ data.stage_user.github_username }} <br />
{% endif %}

{% if 'HuBMAP Slack Workspace' in data.stage_user.access_requests %}
Email for HuBMAP Slack Workspace: {{ data.stage_user.slack_username }} <br />
{% if 'SenNet Slack Workspace' in data.stage_user.access_requests %}
Email for SenNet Slack Workspace: {{ data.stage_user.slack_username }} <br />
{% endif %}

{% if 'protocols.io' in data.stage_user.access_requests %}
Expand Down Expand Up @@ -126,7 +126,8 @@ <h5 class="modal-title" id="exampleModalLongTitle">Deny registration</h5>
</div>
</div>

<!-- Disabled profile matching by Zhou 10/6/2023 -->

<!-- Disabled profile matching by Zhou 1/2/2024 -->
{% if data.matching_profiles|length > 0 %}

<div class="card mt-4">
Expand All @@ -135,7 +136,7 @@ <h5 class="card-header">Possible Existing Matching Profile</h5>

{#
<div class="alert alert-info" role="alert">
Matching profiles found from `wp_connections` table and sorted by the total matching score. Scoring:
Matching profiles found and sorted by the total matching score. Scoring:

<table class="table table-sm">
<thead>
Expand Down Expand Up @@ -169,7 +170,7 @@ <h5 class="card-header">Possible Existing Matching Profile</h5>
<th scope="col">Last Name</th>
<th scope="col">Email</th>
<th scope="col">Organization</th>
<th scope="col">HuBMAP Component</th>
<th scope="col">SenNet Component</th>

{#<th scope="col">Match Score</th>#}

Expand Down Expand Up @@ -214,12 +215,11 @@ <h5 class="modal-title" id="exampleModalLongTitle">Approve registraiton by using
{% endfor %}
</tbody>
</table>
</div>

</div>
</div>
{% endif %}




{% endblock %}

0 comments on commit 5cb03a2

Please sign in to comment.