diff options
author | 2024-07-18 22:30:15 +0200 | |
---|---|---|
committer | 2024-07-18 22:30:15 +0200 | |
commit | 9ac9ef90cc14e684fd40c534a36a430968d85e9b (patch) | |
tree | e859e884a287952210f2abd24562c956dd6375ec /pydis_site/apps/home/views.py | |
parent | Merge pull request #1365 from python-discord/more-frameworks (diff) | |
parent | Merge branch 'main' into feat/timeline-from-yaml (diff) |
Merge pull request #1293 from python-discord/feat/timeline-from-yaml
Markdown + YAML for the timeline
Diffstat (limited to 'pydis_site/apps/home/views.py')
-rw-r--r-- | pydis_site/apps/home/views.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pydis_site/apps/home/views.py b/pydis_site/apps/home/views.py index bfa9e02d..71f95293 100644 --- a/pydis_site/apps/home/views.py +++ b/pydis_site/apps/home/views.py @@ -153,8 +153,3 @@ class HomeView(View): """Collect repo data and render the homepage view.""" repo_data = self._get_repo_data() return render(request, "home/index.html", {"repo_data": repo_data}) - - -def timeline(request: WSGIRequest) -> HttpResponse: - """Render timeline view.""" - return render(request, 'home/timeline.html') |