All Projects → bennylope → django-addendum

bennylope / django-addendum

Licence: BSD-2-Clause license
📜 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.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to django-addendum

Patreondownloader
Powerful tool for downloading content posted by creators on patreon.com. Supports content hosted on patreon itself as well as external sites (additional plugins might be required).
Stars: ✭ 89 (+25.35%)
Mutual labels:  content
Directus
Open-Source Data Platform 🐰 — Directus wraps any SQL database with a real-time GraphQL+REST API and an intuitive app for non-technical users.
Stars: ✭ 13,190 (+18477.46%)
Mutual labels:  content
Spring Content
Cloud-Native Storage and Enterprise Content Services (ECMS) for Spring
Stars: ✭ 151 (+112.68%)
Mutual labels:  content
Pdfbox
Mirror of Apache PDFBox
Stars: ✭ 1,384 (+1849.3%)
Mutual labels:  content
Cash
HTTP response caching for Koa. Supports Redis, in-memory store, and more!
Stars: ✭ 122 (+71.83%)
Mutual labels:  content
Php Readability
A fork of https://bitbucket.org/fivefilters/php-readability
Stars: ✭ 127 (+78.87%)
Mutual labels:  content
Levelgenerator
Unity plug-in for procedurally generating indoor levels using abstract chunks.
Stars: ✭ 82 (+15.49%)
Mutual labels:  content
Unite Cms
Really flexible headless CMS, built on top of Symfony and GraphQL.
Stars: ✭ 242 (+240.85%)
Mutual labels:  content
Cms
MaxSite CMS
Stars: ✭ 123 (+73.24%)
Mutual labels:  content
Openolat
Learning Management System OpenOlat
Stars: ✭ 135 (+90.14%)
Mutual labels:  content
Next
Directus is a real-time API and App dashboard for managing SQL database content. 🐰
Stars: ✭ 111 (+56.34%)
Mutual labels:  content
Moodle Downloader 2
A Moodle downloader that downloads course content fast from Moodle (eg. lecture pdfs)
Stars: ✭ 118 (+66.2%)
Mutual labels:  content
Couchdb Documentation
Apache CouchDB Documentation
Stars: ✭ 128 (+80.28%)
Mutual labels:  content
Allura
Mirror of Apache Allura
Stars: ✭ 91 (+28.17%)
Mutual labels:  content
Grav
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony
Stars: ✭ 13,067 (+18304.23%)
Mutual labels:  content
Ofbiz Plugins
Apache OFBiz is an open source product for the automation of enterprise processes. It includes framework components and business applications for ERP, CRM, E-Business/E-Commerce, Supply Chain Management and Manufacturing Resource Planning. OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions.
Stars: ✭ 83 (+16.9%)
Mutual labels:  content
Moviecontentfilter
Watch movies with the freedom (not) to filter
Stars: ✭ 126 (+77.46%)
Mutual labels:  content
snippets
Short (but useful) scripts and programs.
Stars: ✭ 31 (-56.34%)
Mutual labels:  snippets
Contentify
Contentify is an esports CMS based on the PHP framework Laravel
Stars: ✭ 189 (+166.2%)
Mutual labels:  content
Scobot
SCORM API for Content. JavaScript library, QUnit tests and examples.
Stars: ✭ 128 (+80.28%)
Mutual labels:  content

Django Addendum

Build Status Current PyPI release Download count

Change snippets of copy on your site, on the fly, for any application, and without a full-fledged CMS.

Solving queries like:

Hey, we need to change the greeting on login from "Hi!" to "Sup?"

And:

The footer copy needs to be updated.

And:

The marketing team would really like to be able to change that message on a monthly basis. I don't care that that's a third-party appliwhoozitz!

This is all simple stuff and it's probably coded right into your templates. Changing it is easy enough, but requires a developer and then a release. Boo!

Usage

Just add addendum_tags to your templates:

{% load addendum_tags %}

{% snippet 'home:greeting' %}Hi!{% endsnippet %} {{ user.first_name }}

<footer>
  {% snippet 'home:footer' %}&copy; 2011 by Acme Corp.{% endsnippet %}
</footer>

Now you can edit content for these placeholders from the admin interface. If you don't add anything or you delete text, the site text will always revert to what is in the template.

Use it for small bits of user modifiable text from any template on your site, and for swapping out -lorem ipsum- text when prototyping.

Find some more information in the docs

Installation

Install the package from PyPI:

pip install django-addendum

Add it to your INSTALLED_APPS tuple:

INSTALLED_APPS += ('addendum')

Contributing

Contributions are welcome but should follow some basic guidelines to make life easier:

  • Pull requests should be made from distinct branches that include only the requested changes branched from the canonical master branch.
  • Include tests for bug fixes and new features. Ensure that your Travis build is passing before submitting the pull request.
  • Include documentation for any new features.
  • For multi-commit updates please squash commits so the packager maintainer only has at most a few commits to review.
  • Please limit changes to your specific pull request (excluding extraneous changes and please do not bump the version for your own changes).

License

BSD licensed.

Testing

To run the tests, clone the repository and install tox.:

pip install tox

Then use the command:

tox

To run the tests against specified (or all) environments.

Otherwise, install the test requirements in requirements.txt and then run the py.test comand. tox is recommended.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].