{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% load static %} {% block title %}{% trans 'Settings' %}{% endblock %} {% block extra_head %} {{ preference_form.media }} {% endblock %} {% block content %}

{% trans 'Settings' %}

{% trans 'Name Settings' %}

{% csrf_token %} {{ user_name_form|crispy }}

{% trans 'Password Settings' %}

{% csrf_token %} {{ password_form|crispy }}

{% trans 'Email Settings' %}

{% trans 'Manage Email Settings' %}

{% trans 'Social' %}

{% trans 'Manage Social Accounts' %}



{% trans 'Language' %}

{% csrf_token %}

{% trans 'Style' %}

{% csrf_token %} {{ preference_form|crispy }}

{% trans 'API Token' %}

{% trans 'You can use both basic authentication and token based authentication to access the REST API.' %}


{% trans 'Use the token as an Authorization header prefixed by the word token as shown in the following examples:' %}
Authorization: Token {{ api_token }} {% trans 'or' %}
curl -X GET http://your.domain.com/api/recipes/ -H 'Authorization: Token {{ api_token }}'
{% endblock %}