aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/templates/users/user_detail.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc/templates/users/user_detail.html')
-rw-r--r--pyblackbird_cc/templates/users/user_detail.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/pyblackbird_cc/templates/users/user_detail.html b/pyblackbird_cc/templates/users/user_detail.html
deleted file mode 100644
index 7d52259..0000000
--- a/pyblackbird_cc/templates/users/user_detail.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{% extends "base.html" %}
-
-{% load static %}
-
-{% block title %}
- User:
- {{ object.name }}
-{% endblock title %}
-{% block content %}
- <div class="container">
- <div class="row">
- <div class="col-sm-12">
- <h2>{{ object.name }}</h2>
- </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>
- <a class="btn btn-primary" href="{% url 'mfa_index' %}" role="button">MFA</a>
- <!-- Your Stuff: Custom user template urls -->
- </div>
- </div>
- <!-- End Action buttons -->
- {% endif %}
- </div>
-{% endblock content %}