-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: [organization_bp] New view in order to get the list of members o…
…f an organization.
- Loading branch information
1 parent
51f556c
commit b002c4e
Showing
3 changed files
with
40 additions
and
1 deletion.
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,26 @@ | ||
{% extends "layout.html" %} | ||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<h1>{{ _('Organization members for') }} <a href="{{ url_for('organization_bp.get', organization_id=organization.id) }}">{{ organization.name }}</a></h1> | ||
</div> | ||
</div> | ||
|
||
<br /> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="list-group"> | ||
{% for member in members %} | ||
<a href="{{ url_for('user_bp.get', login=member.login) }}" class="list-group-item list-group-item-action flex-column align-items-start"> | ||
<div class="d-flex w-100 justify-content-between"> | ||
<p class="mb-1">{{ member.login }}</p> | ||
</div> | ||
</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
{% endblock %} |
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