2017-10-31 14:57:26 +00:00
|
|
|
{% extends "base.html" %}
|
2019-03-04 12:17:12 +00:00
|
|
|
{% load avatar_tags %}
|
2017-10-31 14:57:26 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}User: {{ object.username }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
|
2019-03-04 12:17:12 +00:00
|
|
|
<img src="{% avatar_url user %}">
|
|
|
|
|
|
|
|
{% if object.first_name and object.last_name %}
|
|
|
|
<h2>{{ object.first_name }} {{ object.last_name }} <i>({{ object.username }})</i></h2>
|
2019-03-04 12:39:27 +00:00
|
|
|
{% else %}
|
|
|
|
<h2>{{ object.username }}</h2>
|
2017-10-31 14:57:26 +00:00
|
|
|
{% endif %}
|
2019-03-04 12:17:12 +00:00
|
|
|
|
2017-10-31 14:57:26 +00:00
|
|
|
{% if object == request.user %}
|
2019-03-04 12:39:27 +00:00
|
|
|
<a class="btn btn-primary" href="{% url 'profile:update' %}">{% trans 'Change Name' %}</a>
|
|
|
|
<a class="btn btn-primary mx-1" href="{% url 'avatar_change' %}">Change Avatar</a>
|
|
|
|
|
|
|
|
<h3>Your case studies</h3>
|
|
|
|
|
|
|
|
{% if case_studies %}
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name
|
|
|
|
<th>Approved
|
|
|
|
<th>Actions
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for case in case_studies %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ case.entry_name }}
|
|
|
|
<td>{% if case.approved %}Yes{% else %}No{% endif %}
|
|
|
|
<td><a href="{% url 'detail' case.slug %}">View</a> | Edit
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% else %}
|
|
|
|
<p>You have no case studies.</p>
|
|
|
|
{% endif %}
|
2017-10-31 14:57:26 +00:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2019-03-04 12:39:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-31 14:57:26 +00:00
|
|
|
</div>
|
|
|
|
{% endblock content %}
|