Skip to main content

A simple Django that will show differenct resolution of your page

Project description

You Can View your page in different resolution at the same page. it is beneficial for f2e developer

screenshot.png

Installation

pip install django-responsive-viewer

Quick start

  1. Add “django_responsive_viewer” in your INSTALLED_APP

INSTALLED_APPS = (
    'django_responsive_viewer',
)
  1. set up which url you want to show in responsive viewr

RESPONSIVE_SPECS = (
    [320, 568],  # iPhone
    [568, 320],  # iPhone
    [768, 1024],  # iPad landscape
    [1024, 768],  # iPad
    [1366, 768/2],  # notebook
)

RESPONSIVE_VIEWER = [
    '/direct_render/sidebar.html',  # this is the url you want to view
]
  1. of course, you need to setup url

import django_responsive_viewer.urls
url(r'^responsive_viewer/', include(django_responsive_viewer.urls)),

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-responsive-viewer-0.1.1.tar.gz (37.3 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page