{"id":24989019,"url":"https://github.com/engineervix/blog-post--wagtailadmin-field-visibility-toggle","last_synced_at":"2026-03-01T16:01:49.184Z","repository":{"id":226818325,"uuid":"767830675","full_name":"engineervix/blog-post--wagtailadmin-field-visibility-toggle","owner":"engineervix","description":"This is a trivial Wagtail project created as part of a blog post","archived":false,"fork":false,"pushed_at":"2026-02-24T15:50:17.000Z","size":90,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-24T20:32:31.638Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://blog.victor.co.zm/conditional-display-of-fields-in-wagtail-admin","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/engineervix.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-06T01:04:07.000Z","updated_at":"2026-02-07T09:30:17.000Z","dependencies_parsed_at":"2024-04-19T23:33:21.113Z","dependency_job_id":"d6cfff03-0b55-4694-9a04-bd3f785048f6","html_url":"https://github.com/engineervix/blog-post--wagtailadmin-field-visibility-toggle","commit_stats":null,"previous_names":["engineervix/blog-post--wagtailadmin-field-visibility-toggle"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/engineervix/blog-post--wagtailadmin-field-visibility-toggle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engineervix%2Fblog-post--wagtailadmin-field-visibility-toggle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engineervix%2Fblog-post--wagtailadmin-field-visibility-toggle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engineervix%2Fblog-post--wagtailadmin-field-visibility-toggle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engineervix%2Fblog-post--wagtailadmin-field-visibility-toggle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/engineervix","download_url":"https://codeload.github.com/engineervix/blog-post--wagtailadmin-field-visibility-toggle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engineervix%2Fblog-post--wagtailadmin-field-visibility-toggle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29974321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T15:41:30.362Z","status":"ssl_error","status_checked_at":"2026-03-01T15:37:07.343Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-02-04T12:11:59.465Z","updated_at":"2026-03-01T16:01:49.178Z","avatar_url":"https://github.com/engineervix.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Conditional Display of Fields in Wagtail Admin\n\n\u003e An example Wagtail application to illustrate the concept. See blog post [here](https://blog.victor.co.zm/conditional-display-of-fields-in-wagtail-admin)\n\n[![CI/CD](https://github.com/engineervix/blog-post--wagtailadmin-field-visibility-toggle/actions/workflows/main.yml/badge.svg)](https://github.com/engineervix/blog-post--wagtailadmin-field-visibility-toggle/actions/workflows/main.yml)\n\n[![python3](https://img.shields.io/badge/python-3.13-brightgreen.svg)](https://www.python.org/downloads/)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n[![Conventional Changelog](https://img.shields.io/badge/changelog-conventional-brightgreen.svg)](http://conventional-changelog.github.io)\n[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)\n\n## Development\n\n### First things first\n\nI recommend you test this with Python ~~3.12~~ 3.13, because that's what I used for this particular project. However, it _should_ hopefully work with lower Python versions such us 3.12, 3.11 and 3.10.\n\nYou can use [pyenv](https://github.com/pyenv/pyenv) to install multiple python versions on your machine. Once you have your Python installed, create a [**virtual environment**](https://realpython.com/python-virtual-environments-a-primer/) and install dependencies via `pip install -r requirements.txt`.\n\n### Getting Started\n\n- Apply database migrations via `./manage.py migrate`\n- Create a `superuser` via `./manage.py createsuperuser`\n- Run the development server via `./manage.py runserver`\n\nYou can access the development server at \u003chttp://127.0.0.1:8000\u003e. Login to the Admin at \u003chttp://127.0.0.1:8000/admin/\u003e\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengineervix%2Fblog-post--wagtailadmin-field-visibility-toggle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fengineervix%2Fblog-post--wagtailadmin-field-visibility-toggle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengineervix%2Fblog-post--wagtailadmin-field-visibility-toggle/lists"}