7 lines
155 B
HTML
7 lines
155 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block body %}
|
|
<h2>{% trans "Choose plan" %}</h2>
|
|
{% include "plans/plan_table.html" %}
|
|
{% endblock %}
|