This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Ipware and Scripts Dropdown Revamp Added Meetup History Backend
- Loading branch information
1 parent
97a6d46
commit 926dc5e
Showing
12 changed files
with
152 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ python3-openid==3.2.0 | |
geoip2==4.0.1 | ||
django-ipware==3.0.0 | ||
django-apscheduler==0.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
systers_portal/meetup/migrations/0007_auto_20200706_0949.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.6 on 2020-07-06 09:49 | ||
from __future__ import unicode_literals | ||
|
||
import ckeditor.fields | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('meetup', '0006_auto_20200620_2146'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='MeetupImages', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('image', models.FileField(upload_to='meetup/images', verbose_name='Meetup Image')), | ||
], | ||
), | ||
migrations.RemoveField( | ||
model_name='meetup', | ||
name='meetup_picture', | ||
), | ||
migrations.AddField( | ||
model_name='meetup', | ||
name='resources', | ||
field=ckeditor.fields.RichTextField(null=True, verbose_name='Meetup Resources'), | ||
), | ||
migrations.AddField( | ||
model_name='meetupimages', | ||
name='meetup', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='meetup.Meetup', verbose_name='Meetup'), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
systers_portal/meetup/migrations/0008_auto_20200706_1124.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.6 on 2020-07-06 11:24 | ||
from __future__ import unicode_literals | ||
|
||
import ckeditor.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('meetup', '0007_auto_20200706_0949'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='meetup', | ||
name='resources', | ||
field=ckeditor.fields.RichTextField(blank=True, null=True, verbose_name='Meetup Resources'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters