{{ name }}
104 |{{ request.method }} {{ request.get_full_path }}
119 | {{ content }}{% endautoescape %}
126 | ├── user_api ├── __init__.py ├── urls.py ├── serializers.py ├── const.py ├── utility.py └── views.py ├── config ├── tests │ ├── __init__.py │ ├── test_readme.md │ ├── test_setup.py │ └── test_views.py ├── gunicorn.config.py ├── docker-compose.yml ├── Dockerfile ├── .env ├── wsgi.py ├── urls.py └── settings.py ├── static └── ihr │ ├── js │ ├── main.js │ └── vendor │ │ ├── npm.js │ │ └── modernizr-2.8.3-respond-1.4.2.min.js │ ├── tile.png │ ├── favicon.ico │ ├── tile-wide.png │ ├── disco_AS35540.png │ ├── hegemony_AS32.png │ ├── hegemony_AS2497.png │ ├── apple-touch-icon.png │ ├── logo_ihr_website.png │ ├── tartiflette_AS174.png │ ├── tartiflette_AS7922.png │ ├── AS33667_localHegemony.png │ ├── favicon_package_v0.16.zip │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── Melbourne_Singapore_median_expid1_diffrtt_time.png │ ├── browserconfig.xml │ └── css │ ├── main.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap-theme.min.css │ └── bootstrap-theme.css ├── templates ├── contact_form │ ├── contact_form_subject.txt │ ├── contact_form.txt │ ├── contact_form_sent.html │ └── contact_form.html ├── flatpages │ └── default.html ├── ihr │ ├── country_list.html │ ├── asn_list.html │ ├── delay_detail.html │ ├── disco_detail.html │ ├── index.html │ └── country_detail.html ├── base.html └── rest_framework │ └── api.html ├── tests.py ├── apps.py ├── requirements.txt ├── .gitignore ├── const.py ├── urls.py ├── README.md ├── serializers.py └── models.py /user_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/ihr/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/contact_form/contact_form_subject.txt: -------------------------------------------------------------------------------- 1 | message from {{ name }} 2 | -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /templates/contact_form/contact_form.txt: -------------------------------------------------------------------------------- 1 | {{ name }} 2 | {{ email }} 3 | {{ body }} 4 | -------------------------------------------------------------------------------- /static/ihr/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/tile.png -------------------------------------------------------------------------------- /static/ihr/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/favicon.ico -------------------------------------------------------------------------------- /static/ihr/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/tile-wide.png -------------------------------------------------------------------------------- /static/ihr/disco_AS35540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/disco_AS35540.png -------------------------------------------------------------------------------- /static/ihr/hegemony_AS32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/hegemony_AS32.png -------------------------------------------------------------------------------- /static/ihr/hegemony_AS2497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/hegemony_AS2497.png -------------------------------------------------------------------------------- /static/ihr/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/apple-touch-icon.png -------------------------------------------------------------------------------- /static/ihr/logo_ihr_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/logo_ihr_website.png -------------------------------------------------------------------------------- /static/ihr/tartiflette_AS174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/tartiflette_AS174.png -------------------------------------------------------------------------------- /static/ihr/tartiflette_AS7922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/tartiflette_AS7922.png -------------------------------------------------------------------------------- /static/ihr/AS33667_localHegemony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/AS33667_localHegemony.png -------------------------------------------------------------------------------- /static/ihr/favicon_package_v0.16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InternetHealthReport/ihr-django/HEAD/static/ihr/favicon_package_v0.16.zip -------------------------------------------------------------------------------- /templates/contact_form/contact_form_sent.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block body %} 4 |
To send us a message fill out the below form.
6 | 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /templates/ihr/country_list.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | 4 | {% block body %} 5 | 6 |{{ request.method }} {{ request.get_full_path }}
119 | {{ content }}{% endautoescape %}
126 |