mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-25 10:43:46 +03:00
35 lines
753 B
HTML
35 lines
753 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}User: {{ object.username }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
|
|
<h2>{{ object.username }}</h2>
|
|
{% if object.name %}
|
|
<p>{{ object.name }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% if object == request.user %}
|
|
<!-- Action buttons -->
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
<a class="btn btn-primary" href="{% url 'users:update' %}" role="button">My Info</a>
|
|
<a class="btn btn-primary" href="{% url 'account_email' %}" role="button">E-Mail</a>
|
|
<!-- Your Stuff: Custom user template urls -->
|
|
</div>
|
|
|
|
</div>
|
|
<!-- End Action buttons -->
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock content %}
|