Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nathanborror/django-basic-apps
Simple prebuilt applications.
https://github.com/nathanborror/django-basic-apps
Last synced: about 2 months ago
JSON representation
Simple prebuilt applications.
- Host: GitHub
- URL: https://github.com/nathanborror/django-basic-apps
- Owner: nathanborror
- License: bsd-3-clause
- Archived: true
- Created: 2009-02-05T17:15:13.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T16:44:59.000Z (about 4 years ago)
- Last Synced: 2024-09-22T01:04:36.035Z (about 2 months ago)
- Language: Python
- Homepage: http://code.google.com/p/django-basic-apps/
- Size: 610 KB
- Stars: 1,328
- Watchers: 69
- Forks: 314
- Open Issues: 32
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=================
Django Basic Apps
=================Simple apps for Django projects.
To install any of the apps listed simply create a folder on your ``PYTHONPATH`` named 'basic' and place the apps you wish to use in that folder. Then added ``basic.`` to your project's ``settings.py`` file. (replace with the apps you wish to use, naturally).
Below are a list of per app dependancies:
Dependencies
============* Basic Inlines are required to use the Blog app
* Django Comments (http://www.djangoproject.com/documentation/add_ons/#comments) are required for the blog app
* Django Tagging (http://code.google.com/p/django-tagging)
* Markdown (http://www.djangoproject.com/documentation/add_ons/#markup)
* BeautifulSoup (http://www.crummy.com/software/BeautifulSoup/) is required to use the blog and, subsequently, the inlines app.
* Dateutil (http://labix.org/python-dateutil)
* Django Registration for the invitations appInlines
=======Inlines is a template filter that can be used in
conjunction with inline markup to insert content objects
into other pieces of content. An example would be inserting
a photo into a blog post body.An example of the markup is:
The type attribute is app_name.model_name and the id is
the object id. Pretty simple.In your template you would say:
{% load inlines %}{{ post.body|render_inlines }}