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.

31 lines
852 B

  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>{{ project }}</strong>.
  12. </p>
  13. <p>
  14. To manage billing for this project, please log in as <strong>{{ project.owner.email }}</strong>.
  15. </p>
  16. <br />
  17. <p>
  18. <a class="btn btn-default" href="{% url 'hc-logout' %}">Log Out</a>
  19. </p>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. </section>
  25. {% endblock %}