Added discourse profile pictures. Will fallback to gravatar if not linked to forum account

This commit is contained in:
David Taylor
2016-11-03 01:55:27 +00:00
parent f3947d89ca
commit adc94820bb
4 changed files with 58 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0024_auto_20160229_2042'),
]
operations = [
migrations.AddField(
model_name='profile',
name='avatar_template',
field=models.CharField(max_length=255, null=True, editable=False, blank=True),
),
]