By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 user-profile.html

View raw Download
text/html • 877 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{{ user.username }}
4
{% endblock %}
5
{% block breadcrumbs %}
6
<li><a href="/{{ user.username }}">{{ user.username }}</a></li>
7
{% endblock %}
8
{% block nav %}
9
<nav id="repo-nav" class="navbar">
10
<ul id="repo-tabs">
11
<li><a href="?">Overview</a></li>
12
<li><a href="?action=repositories">Repositories</a></li>
13
</ul>
14
<x-buttonbox>
15
{% if loggedInUser != user.username and loggedInUser %}
16
<form action="?action=follow" method="POST">
17
<button type="submit">
18
<iconify-icon icon="mdi:eye"></iconify-icon>
19
{% if relationship %}Unfollow{% else %}Follow{% endif %}
20
</button>
21
</form>
22
{% endif %}
23
</x-buttonbox>
24
</nav>
25
{% endblock %}
26
27