{"id":13937687,"url":"https://github.com/bennylope/django-addendum","last_synced_at":"2025-07-22T07:31:41.345Z","repository":{"id":7721633,"uuid":"9087526","full_name":"bennylope/django-addendum","owner":"bennylope","description":":scroll: Easily edit arbitrary text snippets on a site without a full-fledged CMS or issuing another site release. Like a mini-CMS for every site.","archived":false,"fork":false,"pushed_at":"2020-04-22T18:14:11.000Z","size":254,"stargazers_count":69,"open_issues_count":2,"forks_count":16,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-15T01:39:19.247Z","etag":null,"topics":["content","contenteditable","django","python","snippets"],"latest_commit_sha":null,"homepage":"https://wellfire.co/learn/snippet-editing-with-django-addendum/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bennylope.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","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":"2013-03-28T22:15:36.000Z","updated_at":"2024-01-19T10:23:03.000Z","dependencies_parsed_at":"2022-09-13T13:20:52.067Z","dependency_job_id":null,"html_url":"https://github.com/bennylope/django-addendum","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/bennylope/django-addendum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennylope%2Fdjango-addendum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennylope%2Fdjango-addendum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennylope%2Fdjango-addendum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennylope%2Fdjango-addendum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bennylope","download_url":"https://codeload.github.com/bennylope/django-addendum/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennylope%2Fdjango-addendum/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265901103,"owners_count":23846032,"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":["content","contenteditable","django","python","snippets"],"created_at":"2024-08-07T23:03:47.223Z","updated_at":"2025-07-22T07:31:41.314Z","avatar_url":"https://github.com/bennylope.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"===============\nDjango Addendum\n===============\n\n.. image:: https://api.travis-ci.org/bennylope/django-addendum.svg?branch=master\n    :alt: Build Status\n    :target: http://travis-ci.org/bennylope/django-addendum\n\n.. image:: https://pypip.in/v/django-addendum/badge.svg\n    :alt: Current PyPI release\n    :target: https://crate.io/packages/django-addendum\n\n.. image:: https://pypip.in/d/django-addendum/badge.svg\n    :alt: Download count\n    :target: https://crate.io/packages/django-addendum\n\nChange snippets of copy on your site, on the fly, for any application, and\nwithout a full-fledged CMS.\n\nSolving queries like:\n\n    Hey, we need to change the greeting on login from \"Hi!\" to \"Sup?\"\n\nAnd:\n\n    The footer copy needs to be updated.\n\nAnd:\n\n    The marketing team would really like to be able to change that message on a\n    monthly basis. I don't care that that's a third-party appliwhoozitz!\n\nThis is all simple stuff and it's probably coded right into your templates.\nChanging it is easy enough, but requires a developer and then a release. Boo!\n\nUsage\n=====\n\nJust add `addendum_tags` to your templates::\n\n    {% load addendum_tags %}\n\n    {% snippet 'home:greeting' %}Hi!{% endsnippet %} {{ user.first_name }}\n\n    \u003cfooter\u003e\n      {% snippet 'home:footer' %}\u0026copy; 2011 by Acme Corp.{% endsnippet %}\n    \u003c/footer\u003e\n\nNow you can edit content for these placeholders from the admin interface. If\nyou don't add anything or you delete text, the site text will always revert to\nwhat is in the template.\n\nUse it for small bits of user modifiable text from any template on your site,\nand for swapping out -lorem ipsum- text when prototyping.\n\nFind some more `information in the docs \u003chttps://django-addendum.readthedocs.org/en/latest/\u003e`_\n\nInstallation\n============\n\nInstall the package from PyPI::\n\n    pip install django-addendum\n\nAdd it to your `INSTALLED_APPS` tuple::\n\n    INSTALLED_APPS += ('addendum')\n\n\nContributing\n============\n\nContributions are welcome but should follow some basic guidelines to make life\neasier:\n\n- Pull requests should be made from distinct branches that include only the requested changes branched from the canonical master branch.\n- Include tests for bug fixes and new features. Ensure that your Travis build is passing before submitting the pull request.\n- Include documentation for any new features.\n- For multi-commit updates please squash commits so the packager maintainer only has at most a few commits to review.\n- Please limit changes to your specific pull request (excluding extraneous changes and please do not bump the version for your own changes).\n\nLicense\n=======\n\nBSD licensed.\n\nTesting\n=======\n\nTo run the tests, clone the repository and install tox.::\n\n    pip install tox\n\nThen use the command::\n\n    tox\n\nTo run the tests against specified (or all) environments.\n\nOtherwise, install the test requirements in `requirements.txt` and then run the\n`py.test` comand. `tox` is recommended.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbennylope%2Fdjango-addendum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbennylope%2Fdjango-addendum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbennylope%2Fdjango-addendum/lists"}