-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixing proxy * fixing dependencies * adjusting zoom buttons * remove unneeded import * update retrieval method * removing trailing spaces * adding list of available quarters to api * new migrations * send back latest quarter year combo * send top locations from api * fixing state data * remove array * improve variable names * Add buttons for quarters * adjust button variants * add string helper * return list of quarters * get proper sorting * random lat long * making method private * add cities back to response
- Loading branch information
1 parent
8337886
commit bc8d439
Showing
12 changed files
with
26,602 additions
and
4,500 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.0.12 on 2021-11-23 04:05 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app', '0011_auto_20211022_0013'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='location', | ||
name='facilities', | ||
), | ||
migrations.AlterField( | ||
model_name='data', | ||
name='location', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='app.location'), | ||
), | ||
] |
Oops, something went wrong.