A reusable Django application used to insert content objects into other pieces of content. This application was originally created by Nathan Borror for django-basic-apps, his collection of simple prebuilt Django applications.
A template filter is created which renders inline markup to include content.
- BeautifulSoup is required for parsing markup.
Add inlines
to your settings.INSTALLED_APPS
.
To include a photo in a blog post body, you might put the following into the body.
<inline type="media.photo" id="1" />
To render this in a template, you would use the template filter.
{% load inlines_tags %}
{{ post.body|render_inlines }}
This would insert the media.photo
object with an ID of 1
into the post body.
A javascript-based interface to add inlines can be added to the Django admin site using the included template. The included template must be added to the relevant model's change form.
For example, to add the interface to the body
field of the Post
model in an application called blog
, you would create the template admin/blog/post/change_form.html
. The content of that template would contain the following:
{% extends "admin/change_form.html" %}
{% block extrahead %}
{{ block.super }}
{% include 'inlines/inlines.js' with field='post' %}
{% endblock %}
This template expands the default admin/change_form.html
template, including inlines/inlines.js
in the extrahead
block. The included template expects the variable field
to be included in the context. The variable should be set to the name of the model field that you want the inlines to be applied to.
How content is rendered is determined by a template. These templates should be stored within a template directory called inlines
and use the filename structure <app_name>_<model_name>.html
. The above usage example, for instance, would look for a template called templates/media_photo.html
.
If the appropriate template for the object cannot be found, the templates/default.html
template should be used instead.
Templates are not included with this application. They should be created by the user.