aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main
diff options
context:
space:
mode:
authorGravatar momothereal <[email protected]>2018-06-20 22:55:42 -0400
committerGravatar momothereal <[email protected]>2018-06-20 22:55:42 -0400
commite47130f40c5e5f4b23ce7533fec1f022d6348d8d (patch)
tree300d68ba96c7cca507dd5a45d8c6928644eaa09a /templates/main
parentBasic team information in team page + failed attempt at scss (diff)
Fix participant list styling
Diffstat (limited to 'templates/main')
-rw-r--r--templates/main/jams/team_view.html12
1 files changed, 10 insertions, 2 deletions
diff --git a/templates/main/jams/team_view.html b/templates/main/jams/team_view.html
index 4e65af97..fbf8dfe4 100644
--- a/templates/main/jams/team_view.html
+++ b/templates/main/jams/team_view.html
@@ -2,6 +2,8 @@
{% block title %}Team {{ team.name }}{% endblock %}
{% block og_title %}Team {{ team.name }}{% endblock %}
+{% block page_classes %}jam-team-view{% endblock %}
+
{% block content %}
<div class="uk-section">
<div class="uk-container uk-container-small">
@@ -18,10 +20,16 @@
<h2>
Team Members
</h2>
- <div class="uk-card">
+ <div>
{% for member in team.members %}
- <div class="jam-team-view participant-card uk-card-default">
+ <div class="participant-card uk-card-default">
+ <img src="{{ member.avatar }}" class="uk-border-circle participant-avatar"
+ height="20px">
<strong>{{ member.username }}#{{ member.discriminator }}</strong>
+ &nbsp;
+ <a href="https://gitlab.com/{{ member.gitlab_username }}" target="_blank" class="uk-button uk-button-default participant-gitlab">
+ <i class="uk-icon fa-fw fab fa-gitlab"></i>
+ </a>
</div>
{% endfor %}
</div>