mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Improve Trombi again with pictures, notifs, and style!
This commit is contained in:
24
trombi/migrations/0002_auto_20170510_2229.py
Normal file
24
trombi/migrations/0002_auto_20170510_2229.py
Normal file
@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('trombi', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='trombiuser',
|
||||
name='profile_pict',
|
||||
field=models.ImageField(null=True, blank=True, help_text='The profile picture you want in the trombi (warning: this picture may be published)', verbose_name='profile pict', upload_to='trombi'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='trombiuser',
|
||||
name='scrub_pict',
|
||||
field=models.ImageField(null=True, blank=True, help_text='The scrub picture you want in the trombi (warning: this picture may be published)', verbose_name='scrub pict', upload_to='trombi'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user