{"id":13448737,"url":"https://github.com/elky/django-flat-responsive","last_synced_at":"2025-12-24T22:14:22.741Z","repository":{"id":50628041,"uuid":"73084402","full_name":"elky/django-flat-responsive","owner":"elky","description":"📱 An extension for Django admin that makes interface mobile-friendly. Merged into Django 2.0","archived":false,"fork":false,"pushed_at":"2018-01-05T22:51:13.000Z","size":32,"stargazers_count":248,"open_issues_count":1,"forks_count":17,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-05-16T14:03:36.850Z","etag":null,"topics":["css","django","django-admin","responsive-theme"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elky.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-07T14:07:11.000Z","updated_at":"2024-01-04T16:08:50.000Z","dependencies_parsed_at":"2022-09-26T17:41:06.792Z","dependency_job_id":null,"html_url":"https://github.com/elky/django-flat-responsive","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky%2Fdjango-flat-responsive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky%2Fdjango-flat-responsive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky%2Fdjango-flat-responsive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky%2Fdjango-flat-responsive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elky","download_url":"https://codeload.github.com/elky/django-flat-responsive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244995556,"owners_count":20544369,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","django","django-admin","responsive-theme"],"created_at":"2024-07-31T06:00:19.750Z","updated_at":"2025-12-24T22:14:17.719Z","avatar_url":"https://github.com/elky.png","language":"CSS","funding_links":[],"categories":["Admin interface","CSS","Best Django Admin Interface Resources"],"sub_categories":["Older or Deprecated Projects"],"readme":"Django Flat Responsive\n======================\n\n**django-flat-responsive** is included as `part \u003chttps://github.com/django/django/commit/dc37e8846eeedc3a9100ca21fdc9d579bc534c89\u003e`_ of Django from `version 2.0 \u003chttps://docs.djangoproject.com/en/dev/releases/2.0/#mobile-friendly-contrib-admin\u003e`_! :tada:\n\nUse this app if your project is powered by an older Django version.\n\nDescription\n-----------\n\n**django-flat-responsive** is an extension for Django admin and\n`django-flat-theme \u003chttps://github.com/elky/django-flat-theme/\u003e`_.\nThis app adds CSS file which contains specific media queries for\nmobile devices, such as phones and tablets.\n\n\nInstallation\n------------\n\nInstall via pip:\n``pip install django-flat-responsive``\n\n**For Django 1.9+**\n\nPut ``flat_responsive`` app in your *INSTALLED\\_APPS* **before**\n``django.contrib.admin``:\n\n ::\n\n     INSTALLED_APPS = (\n         ...\n         'flat_responsive',\n         'django.contrib.admin',\n         ...\n     )\n\n\n**For older Django versions**\n\nIf you use Django version older than 1.9 this app will work properly only\nin pair with `django-flat-theme \u003chttps://github.com/elky/django-flat-theme/\u003e`_.\nPut ``flat_responsive`` app in your *INSTALLED\\_APPS* **before** ``flat``:\n\n ::\n\n     INSTALLED_APPS = (\n         ...\n         'flat_responsive',\n         'flat',\n         'django.contrib.admin',\n         ...\n     )\n\n\nImportant note\n--------------\n⚠️ If you have your own custom ``base_site.html`` file, you need to add the following lines to it to make this app work:\n\n::\n\n     {% load admin_static %}\n     {% block blockbots %}\n       {{ block.super }}\n       \u003cmeta name=\"viewport\" content=\"user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0\"\u003e\n       \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'admin/css/responsive.css' %}\" /\u003e\n       \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"admin/css/responsive_rtl.css\" %}\" /\u003e\n     {% endblock %}\n\n\nCompatibility\n-------------\n\nWorks in modern mobile browsers which support `CSS Flexbox \u003chttp://caniuse.com/#search=flexbox\u003e`_.\nOlder browser may experience varying levels of graceful degradation.\n\n\nTesting\n-------\n\nTested with:\n\n|4|\n\n\nGuaranteed works in:\n\n- iOS Safari 9+\n- Android Browser 4.4+\n- Chrome for iOS 30+\n- Chrome for Android 30+\n- Firefox for iOS 5.0+\n- Firefox for Android 50+\n- Windows Phone IE Mobile 11+\n\nIf you found any issues or want this app to support other browser versions -\nplease report `here \u003chttps://github.com/elky/django-flat-responsive/issues/\u003e`_.\n\n\nScreenshots\n-----------\n\n**Login page**\n\n|1|\n\n------------\n\n**Dashboard**\n\n|2|\n\n------------\n\n**Calendar widget**\n\n|3|\n\n.. |1| image:: https://cloud.githubusercontent.com/assets/209663/20430873/f001c6ee-adea-11e6-9695-df9957db09ce.png\n.. |2| image:: https://cloud.githubusercontent.com/assets/209663/20430878/f72836ce-adea-11e6-8517-ef6d2fddd241.png\n.. |3| image:: https://cloud.githubusercontent.com/assets/209663/20430883/fee78e00-adea-11e6-9bcb-8cac5a314094.png\n.. |4| image:: http://elky.me/browserstack.svg\n   :width: 200px\n   :target: http://browserstack.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felky%2Fdjango-flat-responsive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felky%2Fdjango-flat-responsive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felky%2Fdjango-flat-responsive/lists"}