account linking and docs update

This commit is contained in:
vabene1111
2021-01-28 16:10:26 +01:00
parent a112824578
commit 8d65d20d1f
4 changed files with 106 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 3.1.5 on 2021-01-28 14:35
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0106_shoppinglist_supermarket'),
]
operations = [
migrations.AlterModelOptions(
name='supermarketcategoryrelation',
options={'ordering': ('order',)},
),
]

View File

@@ -35,6 +35,7 @@
class="fas fa-save"></i> {% trans 'Save' %}</button>
</form>
<a href="{% url 'socialaccount_connections' %}">{% trans 'Link social account' %}</a>
<br/>
<br/>

View File

@@ -0,0 +1,55 @@
{% extends "base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Account Connections" %}{% endblock %}
{% block content %}
<h3>{% trans "Account Connections" %}</h3>
{% if form.accounts %}
<p>{% blocktrans %}You can sign in to your account using any of the following third party
accounts:{% endblocktrans %}</p>
<form method="post" action="{% url 'socialaccount_connections' %}">
{% csrf_token %}
<fieldset>
{% if form.non_field_errors %}
<div id="errorMsg">{{ form.non_field_errors }}</div>
{% endif %}
{% for base_account in form.accounts %}
{% with base_account.get_provider_account as account %}
<div>
<label for="id_account_{{ base_account.id }}">
<input id="id_account_{{ base_account.id }}" type="radio" name="account"
value="{{ base_account.id }}"/>
<span class="socialaccount_provider {{ base_account.provider }} {{ account.get_brand.id }}">{{ account.get_brand.name }}</span>
{{ account }}
</label>
</div>
{% endwith %}
{% endfor %}
<div>
<button class="btn btn-warning" type="submit">{% trans 'Remove' %}</button>
</div>
</fieldset>
</form>
{% else %}
<p>{% trans 'You currently have no social network accounts connected to this account.' %}</p>
{% endif %}
<h4>{% trans 'Add a 3rd Party Account' %}</h4>
<ul class="socialaccount_providers">
{% include "socialaccount/snippets/provider_list.html" with process="connect" %}
</ul>
{% include "socialaccount/snippets/login_extra.html" %}
{% endblock %}