{"id":14483010,"url":"https://github.com/revolunet/bootstrap-django-admin","last_synced_at":"2025-08-30T03:32:44.526Z","repository":{"id":3822623,"uuid":"4903188","full_name":"revolunet/bootstrap-django-admin","owner":"revolunet","description":"Django admin templates styled with Twitter Bootstrap","archived":false,"fork":true,"pushed_at":"2012-05-09T01:42:11.000Z","size":93,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-24T02:16:17.453Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://orzpoint.com","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"aobo711/bootstrap-django-admin","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/revolunet.png","metadata":{"files":{"readme":"README.md","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":"2012-07-05T09:59:15.000Z","updated_at":"2013-01-11T00:10:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/revolunet/bootstrap-django-admin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/revolunet/bootstrap-django-admin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revolunet%2Fbootstrap-django-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revolunet%2Fbootstrap-django-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revolunet%2Fbootstrap-django-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revolunet%2Fbootstrap-django-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/revolunet","download_url":"https://codeload.github.com/revolunet/bootstrap-django-admin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revolunet%2Fbootstrap-django-admin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272800742,"owners_count":24995138,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-09-03T00:01:26.694Z","updated_at":"2025-08-30T03:32:44.181Z","avatar_url":"https://github.com/revolunet.png","language":null,"readme":"\u003ch2\u003eBeautiful Django admin template styled with \u003ca href=\"http://twitter.github.com/bootstrap/\"\u003eTwitter Bootstrap\u003c/a\u003e\u003c/h2\u003e\n\n\u003cdiv\u003eWorks on Django 1.3 and above.\u003c/div\u003e\n\n\u003ch2\u003eScreenshots:\u003c/h2\u003e\n\u003cdiv \u003e\n    \u003cimg src=\"https://lh5.googleusercontent.com/-YPSx9j0czfg/T2v-QhxTbZI/AAAAAAAAABc/YLo_5nRp6Zo/s433/login.png\" /\u003e\n    \u003cbr /\u003e\n    \u003cimg src=\"https://lh5.googleusercontent.com/-J5YFiMBq6Tc/T2v-PKx3TWI/AAAAAAAAABA/aJWHPIQ7c7s/s1063/home.png\" /\u003e\n    \u003cbr /\u003e\n    \u003cimg src=\"https://lh4.googleusercontent.com/-CirIZtAqdRI/T2v-QI6ikWI/AAAAAAAAABQ/kQz1jEtXPuE/s394/list.png\" /\u003e\n    \u003cbr /\u003e\n    \u003cimg src=\"https://lh4.googleusercontent.com/-ZqZb1Dj4tqc/T2v-PA3ioGI/AAAAAAAAABE/2h04vED09Sc/s543/change_password.png\" /\u003e\n\u003c/div\u003e\n\n\u003ch2\u003eHow to use:\u003c/h2\u003e\n\n\u003col\u003e\n    \u003cli\u003eSetup django admin first, link: \u003ca href=\"https://docs.djangoproject.com/en/dev/ref/contrib/admin/\"\u003ehttps://docs.djangoproject.com/en/dev/ref/contrib/admin/\u003c/a\u003e .\u003c/li\u003e\n    \u003cli\u003eClone the project to you workspace, copy the template folder to you django project root, so the template will locates at the same directory as settings.py. \u003c/li\u003e\n    \u003cli\u003eModify settings:\n        \u003col\u003e\n            \u003cli\u003eAdd \n                \u003ccode\u003e\n                    os.path.join(os.path.dirname(__file__), 'templates').replace('\\\\','/')\n                \u003c/code\u003e\n                to TEMPLATE_DIRS in settings.py.\n            \u003c/li\u003e\n            \u003cli\u003e\n                Add additional url rule to urls.py, this rule is used for hosting static resouce in admin templates:\n                \u003ccode \u003e\n                (r'^admins/(?P\u003cpath\u003e.*)$', 'django.views.static.serve', {'document_root': '/your_project_directory/project_name/project_folder/templates/admin/static', 'show_indexes': True}),\n                \u003c/code\u003e\n            \u003c/li\u003e\n        \u003col\u003e\n    \u003c/li\u003e\n\u003c/ol\u003e\n\n\u003ch2\u003eCustomize Bootstrap\u003c/h2\u003e\n\n\u003cdiv\u003eBootStrap css locates at /template/admin/static/css, rewrite styles and rebuild, you can also modify rewrite.css.\u003c/div\u003e\n\n","funding_links":[],"categories":["Others"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevolunet%2Fbootstrap-django-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frevolunet%2Fbootstrap-django-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevolunet%2Fbootstrap-django-admin/lists"}