* chore: bring docker dev init script up to date with bs5 branch (#3611) * ci: only run codeql on schedule * feat: shorten long agenda filter button labels (#3602) Sessions with long names lead to poor rendering of the agenda filter buttons on the 'customize the agenda view' page. This truncates those labels at 3 words. * docs: Remove stale and incomplete information from the README (#3612) * docs: Suggest cloning a fork rather than ietf-tools repo (#3614) * docs: update README * chore: add issue templates * chore: update issue templates config * chore: remove duplicate security issue link * docs: point feature requests to discussions * chore: add bug report form * chore: remove bug report issue template * chore: fix bug report form * fix: point the api index page into Github instead of trac/svn * chore: remove os + version + log fields from bug report form * fix: point to GitHub for bug reports (#3625) * fix: point to GitHub for bug reports * fix: point report bug link to template chooser * fix: point report bug link to template chooser (2) Co-authored-by: Nicolas Giard <github@ngpixel.com> * fix: remove stale explanation of status reports (#3628) * fix: adjust about page to reflect move to GitHub. Normalize information level on page. (#3629) * fix: remove anchor tag with empty href (#3630) * fix: use same github issue URL on 500 error page as elsewhere (#3631) * chore: update report-a-bug.yml form * ci: fix __init__.py version quotes * chore: bring docker-compose to root level (#3642) (#3643) Authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Robert Sparks <rjsparks@nostrum.com> Co-authored-by: Jim Fenton <fenton@bluepopcorn.net>
17 lines
441 B
Python
17 lines
441 B
Python
# Copyright The IETF Trust 2015-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
from ietf.release import views
|
|
from ietf.utils.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.release),
|
|
url(r'^(?P<version>[0-9.]+.*)/$', views.release),
|
|
url(r'^about/?$', TemplateView.as_view(template_name='release/about.html'), name='releaseabout'),
|
|
url(r'^stats/?$', views.stats),
|
|
]
|
|
|