{% extends "base.html" %} {% block page-title %}/ Account - {{ block.super }}{% endblock %} {% block body-class %}{{ block.super }} static account{% endblock %} {% block breadcrumb %}
  • Account
  • {% endblock %} {% block content %}

    Account

    {% if messages %} {% for message in messages %}

    {{ message }}

    {% endfor %} {% endif %} {% if request.user.profile.is_pro %}
    Edit Pro settings
    {{ form.blog_title }}
    {{ form.blog_theme }}
    {{ form.blog_domain }} Like 'snipt.nicksergeant.com' or 'nicksergeant.com' (without quotes). Set your CNAME / A-record to point to 96.126.110.160
    {{ form.default_editor }}
    {{ form.gittip_username }} Your Gittip username, if you have one.
    {{ form.disqus_shortname }} If you have your own Disqus account that you'd like to use for your blog comments, enter your shortname here.
    {{ form.google_analytics_tracking_id }} If you'd like to track visits to your blog site with Google Analytics, enter your tracking ID here.
    {% csrf_token %}
    {% endif %}
    {% endblock %}