aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Merge settings/Pipfile.lockGravatar Gareth Coles2019-04-20-9/+118
|
* Merge branch 'django' into django+200/wikiGravatar Gareth Coles2019-04-20-1372/+938
|\ | | | | | | | | | | | | | | | | | | # Conflicts: # Pipfile # Pipfile.lock # pydis_site/apps/home/tests/test_app_basics.py # pydis_site/apps/home/urls.py # pydis_site/hosts.py # pydis_site/settings.py
| * Merge pull request #213 from python-discord/django_front_pageGravatar Johannes Christ2019-04-20-1316/+973
| |\ | | | | | | Django front page
| | * Make the flakes happy.Gravatar Johannes Christ2019-04-20-3/+2
| | |
| | * Add type hinting.Gravatar Leon Sandøy2019-04-20-8/+13
| | |
| | * Adding a Discord menu item to the hamburger, and upping test coverage back ↵Gravatar Leon Sandøy2019-04-20-3/+23
| | | | | | | | | | | | to 100%
| | * Addressing volcyys third review.Gravatar Leon Sandøy2019-04-20-6/+7
| | |
| | * Addressing all comments in volcyy's second review. The tests now mock the ↵Gravatar Leon Sandøy2019-04-19-132/+204
| | | | | | | | | | | | API calls so we don't have to actually call the API every time we run tests.
| | * Merge branch 'django_front_page' of github.com:python-discord/site into ↵Gravatar Leon Sandøy2019-04-19-21/+11
| | |\ | | | | | | | | | | | | django_front_page
| | | * Pin flake8-bandit to 1.0.2 to fix ExceptHandler error.Gravatar Scragly2019-04-19-21/+11
| | | |
| | * | Added test cases to increase coverage for this PR to 100%Gravatar Leon Sandøy2019-04-19-3/+37
| | |/
| | * Addressing all of volcyys review comments, and adding linting and full test ↵Gravatar Leon Sandøy2019-04-18-46/+75
| | | | | | | | | | | | coverage.
| | * Fixing all linting problems introduced by this PR. There's still a TODO left ↵Gravatar Leon Sandøy2019-04-18-8/+8
| | | | | | | | | | | | in viewsets, but that's for jchrist to deal with later, so I'm leaving that in.
| | * Adding the migration and the lockfileGravatar Leon Sandøy2019-04-18-0/+450
| | |
| | * Update docker/app/migrate_and_serve.shGravatar Sebastiaan Zeeff2019-04-18-1/+1
| | | | | | | | | Co-Authored-By: lemonsaurus <[email protected]>
| | * Adding a default admin panel user to migrate_and_serve, adding hrefs for all ↵Gravatar Leon Sandøy2019-04-18-17/+34
| | | | | | | | | | | | the links, fixing a bug with the banner highlighting, and making the sponsors hero a little bigger.
| | * The GitHub API stuff is done now, including data caching. Just a couple of ↵Gravatar Leon Sandøy2019-04-17-143/+129
| | | | | | | | | | | | minor bugfixes left before this is PR-ready.
| | * makemigrations pipeline created, RepoData model created, and a really naive ↵Gravatar Leon Sandøy2019-04-16-37/+103
| | | | | | | | | | | | implementation of the API stuff which makes 6 requests and takes forever to load. I've found a better approach so I'm gonna switch to that next.
| | * merging in changes from the main branchGravatar Leon Sandøy2019-04-16-931/+749
| | |\
| | * | refactoring slightly to use a class-based view, changing home to main. Ready ↵Gravatar Leon Sandøy2019-04-13-60/+136
| | | | | | | | | | | | | | | | to write the API search stuff now.
| | * | Added hrefs for the cardsGravatar Leon Sandøy2019-04-13-6/+6
| | | |
| | * | Adjust dynamic video sizing to try keep aspect.Gravatar Scragly2019-04-13-19/+32
| | | |
| | * | Responsive video container not quite working the way it should.Gravatar Leon Sandøy2019-04-12-51/+113
| | | |
| | * | Slight improvements to the who are we textGravatar Leon Sandøy2019-04-12-8/+17
| | | |
| | * | Better JetBrains sponsor logo, fixed a bug with responsive video containers, ↵Gravatar Leon Sandøy2019-04-12-74/+83
| | | | | | | | | | | | | | | | set up some placeholder cards for projects on the landing page.
| | * | responsive video containerGravatar Leon Sandøy2019-04-12-12/+33
| | | |
| | * | Fixing the footer. Django logo no longer clips, and matches the rest of the ↵Gravatar Leon Sandøy2019-04-12-4/+4
| | | | | | | | | | | | | | | | font size better. Footer size reduced and padding made symmetrical.
| | * | Implemented a sticky footer systemGravatar Leon Sandøy2019-04-12-5/+20
| | | |
| | * | New landing page. Not quite done yet. This probably should've been more than ↵Gravatar Leon Sandøy2019-04-11-1149/+356
| | | | | | | | | | | | | | | | one commit.
* | | | Address reviewsGravatar Gareth Coles2019-04-20-498/+325
| | | |
* | | | Update Pipfile.lock and move home app testsGravatar Gareth Coles2019-04-19-37/+1
| | | |
* | | | Merge branch 'django' into django+200/wikiGravatar Gareth Coles2019-04-19-1556/+1855
|\| | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Pipfile.lock # pydis_site/apps/home/tests.py
| * | | Revert linter to non-verbose.Gravatar scragly2019-04-19-4/+4
| | | |
| * | | Output verbose linter to console.Gravatar scragly2019-04-19-1/+1
| | | |
| * | | Get verbose output for linter.Gravatar scragly2019-04-19-1/+1
| | | |
| * | | Fix Dockerfile path.Gravatar scragly2019-04-19-10/+10
| | | |
| * | | Fix docker reference.Gravatar scragly2019-04-19-18/+15
| | | |
| * | | Remove multi-version, use lock and publish lint.Gravatar scragly2019-04-19-133/+96
| | | |
| * | | Merge pull request #212 from python-discord/api/split-viewsetsGravatar Johannes Christ2019-04-18-929/+1020
| |\ \ \ | | |_|/ | |/| | #208: refactor viewsets into submodules
| | * | Specify hadolint arguments on the command line.Gravatar Johannes Christ2019-04-18-5/+1
| | | |
| | * | Restructure viewsets to submodules.Gravatar Johannes Christ2019-04-17-924/+1019
| |/ /
| * | Merge pull request #207 from python-discord/api/split-modelsGravatar Johannes Christ2019-04-15-513/+612
| |\ \ | | | | | | | | #205: split models into multiple modules
| | * | Remove the third infraction.Gravatar Johannes Christ2019-04-14-67/+0
| | | |
| | * | Move models to submodules.Gravatar Johannes Christ2019-04-14-513/+679
| |/ /
| * | Add missing test.Gravatar Johannes Christ2019-04-14-0/+7
| | |
| * | Fixup broken reverse in test.Gravatar Johannes Christ2019-04-14-1/+1
| | |
| * | Merge pull request #199 from python-discord/add-logs-apiGravatar Jeremiah Boby2019-04-11-23/+142
| |\ \ | | | | | | | | Add an API to post logs to.
| | * | Document `LogEntryViewSet`.Gravatar Johannes Christ2019-04-10-1/+27
| | | |
| | * | Add the `message` field.Gravatar Johannes Christ2019-04-08-3/+6
| | | |
| | * | Minor formatting improvements.Gravatar Johannes Christ2019-04-07-0/+1
| | | |