aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorGravatar momothereal <[email protected]>2018-06-19 21:21:22 -0400
committerGravatar momothereal <[email protected]>2018-06-19 21:21:22 -0400
commitb60089979d21a2ada43359ba05eb764e16af2848 (patch)
treec90d68370a55ef5e3d500ed18c718d5e5709763e /templates
parentFix linting (diff)
Add GitLab button next to username
Diffstat (limited to 'templates')
-rw-r--r--templates/main/jams/teams_list.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/main/jams/teams_list.html b/templates/main/jams/teams_list.html
index 68000baf..1fc5bf87 100644
--- a/templates/main/jams/teams_list.html
+++ b/templates/main/jams/teams_list.html
@@ -17,7 +17,12 @@
<strong>Team Members</strong>
<ul>
{% for member in entry.team.members %}
- <li>{{ member.username }}#{{ member.discriminator }}</li>
+ <li>
+ {{ member.username }}#{{ member.discriminator }}
+ <a class="uk-button uk-button-small" target="_blank" href="https://gitlab.com/{{ member.gitlab_username }}">
+ <i class="uk-icon fa-fw fab fa-gitlab"></i>
+ </a>
+ </li>
{% endfor %}
</ul>
</div>