Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (36 sloc)
1.41 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "saas/base.html" %} | |
{% block content %} | |
<section id="plans"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12 text-center pt-4"> | |
<h3>A Subscription Plan That Works for You</h3> | |
</div> | |
</div> | |
</div> | |
<div class="container container-margered"> | |
<form method="post" action="."> | |
<input type="hidden" name="csrfmiddlewaretoken" value="{{csrf_token}}"> | |
<div class="row row-flex"> | |
{% for plan in plan_list %} | |
{% if plan.is_line_break %} | |
</div> | |
<div class="row row-flex"> | |
{% if plan_list|length == 1 %} | |
<div class="col-md-4"></div> | |
{% endif %} | |
{% endif %} | |
{% include "saas/_plan_short.html" %} | |
{% endfor %} | |
{% if plan_list.is_line_break %} | |
</div> | |
<div class="row row-flex"> | |
{% endif %} | |
{% if show_show_edit_tools and plan %} | |
{% include "saas/_plan_short.html" %} | |
{% endif %} | |
</div> | |
</form> | |
</div> | |
</section> | |
{% endblock %} |