{% extends "account/base.html" %} {% load kegweblib %} {% load foursquare %} {% load untappd %} {% load crispy_forms_tags %} {% block title %}Account: Connections | {{ block.super }}{% endblock %} {% block pagetitle %}Connections{% endblock %} {% block kb-account-main %} {% if not USE_TWITTER and not USE_FOURSQUARE and not USE_UNTAPPD %}
No connections are available.
{% endif %} {% if USE_TWITTER %}

Twitter

{% if twitter_profile %}

Settings

Current account: @{{twitter_profile.settings.twitter_name}}

{% csrf_token %} {{ twitter_settings_form|crispy }}
{% csrf_token %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% endif %} {% if USE_UNTAPPD %}

Untappd

{% if untappd_profile %}

Current account: {{untappd_profile.untappd}}

{% csrf_token %}
{% else %} {% untappd_button %} {% endif %}
{% endif %} {% if USE_FOURSQUARE %}

Foursquare

{% if foursquare_profile %}

Settings

{% csrf_token %} {{ foursquare_settings_form|crispy }}
{% csrf_token %}
{% else %} {% foursquare_button %} {% endif %}
{% endif %} {% endblock %}