You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.0 KiB

{% extends "base.html" %}
{% load hc_extras %}
{% block title %}Pricing - {% site_name %}{% endblock %}
{% block content %}
<section id="plans">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="jumbotron">
<p>
You are currently viewing team <strong>{{ request.team }}</strong>.
</p>
<p>
To manage this team, please log in as <strong>{{ request.team.user.email }}</strong>.
</p>
<br />
<p>
<a class="btn btn-default"
href="{% url 'hc-switch-team' request.user.username %}">
Switch to {{ request.profile }}
</a>
<a class="btn btn-default" href="{% url 'hc-logout' %}">Log Out</a>
</p>
</div>
</div>
</div>
</div>
</section>
{% endblock %}