{% extends 'layouts/app.html' %} {% block title %}Account settings{% endblock %} {% block body %}

Settings

{{ current_user.email }}

Update email and password {% if current_user.username %} Your username is {{ current_user.username }} {% else %} Pick a username {% endif %}
{% if current_user.subscription %}

{{ current_user.subscription.plan | title }} subscription

{{ current_user.credit_card.brand }} ****{{ current_user.credit_card.last4 }} ({{ current_user.credit_card.exp_date.strftime('%m/%Y') }})

{% else %}

Subscribe today

Hey buddy, why aren't you subscribed?

Now that you've created an account, wouldn't it be unbelievably amazing to unlock everything by becoming a subscriber today?

Learn more
{% if current_user.invoices %}

Previous subscription info

{% endif %} {% endif %}
{% endblock %}