{"id":17172878,"url":"https://github.com/20tab/django-taggit-live","last_synced_at":"2025-04-13T16:12:53.347Z","repository":{"id":4957969,"uuid":"6115399","full_name":"20tab/django-taggit-live","owner":"20tab","description":"It's an autocomplete widget for django-taggit TagField","archived":false,"fork":false,"pushed_at":"2017-01-31T16:09:23.000Z","size":39,"stargazers_count":9,"open_issues_count":2,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T07:11:14.396Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"atom-archive/electron-starter","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/20tab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-10-07T19:14:11.000Z","updated_at":"2021-07-09T09:01:39.000Z","dependencies_parsed_at":"2022-07-08T05:26:32.673Z","dependency_job_id":null,"html_url":"https://github.com/20tab/django-taggit-live","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/20tab%2Fdjango-taggit-live","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/20tab%2Fdjango-taggit-live/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/20tab%2Fdjango-taggit-live/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/20tab%2Fdjango-taggit-live/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/20tab","download_url":"https://codeload.github.com/20tab/django-taggit-live/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248411425,"owners_count":21098917,"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":[],"created_at":"2024-10-14T23:48:34.532Z","updated_at":"2025-04-13T16:12:53.319Z","avatar_url":"https://github.com/20tab.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"It's an autocomplete widget for django-taggit TagField:\nhttp://github.com/alex/django-taggit\n\n## Installation\n\n   1. You need to have django-taggit already installed\n   2. Clone django-taggit-live\n   3. Run setup.py to install taggit_live\n      (Alternatively you can use the command: \u003cb\u003e\u003ci\u003epip install django-taggit-live\u003c/i\u003e\u003c/b\u003e)\n   4. Add \"taggit_live\" to installed apps in your project's settings.\n   5. Add the following line to your project's urls.py file:\n\n      (r'', include('taggit_live.urls')),\n\n## Usage\n\n\nYou have to use TaggableManager your models.py file. Example:\n\n``` py\nfrom django.db import models\nfrom taggit.managers import TaggableManager\n\nclass SomeModel(models.Model):\n        tags = TaggableManager()\n```\nThen you have to change form field in ModelForm. Example:\n``` py\nfrom taggit_live.forms import LiveTagField\n\nclass SomeForm(forms.ModelForm):\n    tags = LiveTagField()\n    class Meta:\n        model = SomeModel\n```\nFinally, you have to include jquery library in your ModelAdmin:\n``` py\nfrom taggit_live.forms import LiveTagField\n\nclass SomeAdmin(admin.ModelAdmin):\n    class Media:\n         css = {'all': ('/path_to/jquery-ui-autocomplete.css',\n            \t\t\t)\n               }\n         js = (\n            '/path_to/jquery-lib.js',\n            '/path_to/jquery-ui-autocomplete.js',\n            )\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F20tab%2Fdjango-taggit-live","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F20tab%2Fdjango-taggit-live","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F20tab%2Fdjango-taggit-live/lists"}