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

  1. {% extends "base.html" %}
  2. {% load hc_extras %}
  3. {% block title %}Pricing - {% site_name %}{% endblock %}
  4. {% block content %}
  5. <section id="plans">
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-12">
  9. <div class="jumbotron">
  10. <p>
  11. You are currently viewing project <strong>{{ request.project }}</strong>.
  12. </p>
  13. <p>
  14. To manage this team, please log in as <strong>{{ request.project.owner.email }}</strong>.
  15. </p>
  16. <br />
  17. <p>
  18. <a class="btn btn-default"
  19. href="{% url 'hc-switch-team' request.user.username %}">
  20. Switch to {{ request.profile }}
  21. </a>
  22. <a class="btn btn-default" href="{% url 'hc-logout' %}">Log Out</a>
  23. </p>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </section>
  29. {% endblock %}