-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further additions to activity page (not authed)
- Loading branch information
Showing
5 changed files
with
92 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div class="d-flex mb-1"> | ||
<div class="pr-3"><b>Managed by:</b></div> | ||
<div> | ||
{{ project.leader }} | ||
{% if project.organization %} | ||
<br><span class="text-muted">{{ project.organization}}</span> | ||
{% endif %} | ||
</div> | ||
</div> |
13 changes: 0 additions & 13 deletions
13
open_humans/templates/partials/activity-info-table-bs4.html
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
open_humans/templates/partials/activity-permissions-bs4.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<div class="d-flex mb-1"> | ||
<div class="pr-3"> | ||
<b>Requested permissions:</b> | ||
</div> | ||
<div> | ||
{% for source_project in project.requested_sources.all %} | ||
<a href="{% url 'activity-management' source_project.slug %}"> | ||
{{ source_project.name }}</a><br> | ||
{% endfor %} | ||
{% if project.request_username_access %} | ||
Username | ||
{% endif %} | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters