{% extends "base.html" %} {% load i18n %} {% block pagename %}{% trans 'Author Profile' %}{% endblock %} {% block content %}

{% trans 'Author Profile' %}

{% if user %}

{% trans "User:" %} {{ user.username }}

{% trans "API Key:" %} {{ profile.key }}
{% trans "Use this key as a more secure substitute for the password in external posting tools." %}

{% trans 'XMLRPC access:' %} http://{{blog.site.domain }}{% url banjo_xmlrpc %}

{% else %}

{% trans "You aren't logged in" %}

{% endif %} {% endblock %}