Skip to content

About

aohc()

Redirect to the new location (in the legal section).

Source code in ckanext/nhm/routes/about.py
62
63
64
65
66
67
@blueprint.route('/harmful-content')
def aohc():
    """
    Redirect to the new location (in the legal section).
    """
    return toolkit.redirect_to('legal.aohc')

citation()

Render the "about" page for citations and attributions.

Source code in ckanext/nhm/routes/about.py
14
15
16
17
18
19
@blueprint.route('/citation')
def citation():
    """
    Render the "about" page for citations and attributions.
    """
    return toolkit.render('about/citation.html', {'title': 'Citation and attribution'})

credits()

Render the "about" page for credits.

Source code in ckanext/nhm/routes/about.py
30
31
32
33
34
35
@blueprint.route('/credits')
def credits():
    """
    Render the "about" page for credits.
    """
    return toolkit.render('about/credits.html', {'title': 'Credits'})

datacite()

Render the "about" page for DataCite service provider.

Source code in ckanext/nhm/routes/about.py
54
55
56
57
58
59
@blueprint.route('/datacite')
def datacite():
    """
    Render the "about" page for DataCite service provider.
    """
    return toolkit.render('about/datacite.html', {'title': 'DataCite Service Provider'})

download()

Render the "about" page for downloads and the API.

Source code in ckanext/nhm/routes/about.py
22
23
24
25
26
27
@blueprint.route('/download')
def download():
    """
    Render the "about" page for downloads and the API.
    """
    return toolkit.render('about/download.html', {'title': 'Download and API'})

privacy()

Render the "about" page for privacy.

Source code in ckanext/nhm/routes/about.py
38
39
40
41
42
43
@blueprint.route('/privacy')
def privacy():
    """
    Render the "about" page for privacy.
    """
    return toolkit.render('about/privacy.html', {'title': 'Privacy'})

terms()

Render the "about" page for terms and conditions.

Source code in ckanext/nhm/routes/about.py
46
47
48
49
50
51
@blueprint.route('/terms')
def terms():
    """
    Render the "about" page for terms and conditions.
    """
    return toolkit.render('about/terms.html', {'title': 'Terms and conditions'})