CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 09 Aug 2025 12:15:22 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100406184757
location: https://web.archive.org/web/20100406184757/https://github.com/nathanborror/django-basic-apps
server-timing: captures_list;dur=0.715913, exclusion.robots;dur=0.024125, exclusion.robots.policy;dur=0.010677, esindex;dur=0.013100, cdx.remote;dur=83.052170, LoadShardBlock;dur=368.131123, PetaboxLoader3.datanode;dur=81.474895, PetaboxLoader3.resolve;dur=214.866048
x-app-server: wwwb-app216
x-ts: 302
x-tr: 493
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app216; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 09 Aug 2025 12:15:23 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 06 Apr 2010 18:47:57 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "6b88a4feaf5c9b3ac1c05a03e8f01eaa"
x-archive-orig-x-runtime: 128ms
x-archive-orig-content-length: 23106
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 06 Apr 2010 18:47:57 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 13 Sep 2009 13:04:44 GMT", ; rel="prev memento"; datetime="Thu, 04 Mar 2010 21:46:52 GMT", ; rel="memento"; datetime="Tue, 06 Apr 2010 18:47:57 GMT", ; rel="next memento"; datetime="Sat, 25 Jun 2011 09:29:28 GMT", ; rel="last memento"; datetime="Fri, 11 Jul 2025 07:49:56 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100406110248_crawl102-c/51_15_20100406183215_crawl101.arc.gz
server-timing: captures_list;dur=0.876762, exclusion.robots;dur=0.028584, exclusion.robots.policy;dur=0.013050, esindex;dur=0.016199, cdx.remote;dur=30.847715, LoadShardBlock;dur=359.036535, PetaboxLoader3.datanode;dur=190.115543, PetaboxLoader3.resolve;dur=513.634311, load_resource;dur=353.581468
x-app-server: wwwb-app216
x-ts: 200
x-tr: 811
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
nathanborror's django-basic-apps at master - GitHub
nathanborror / django-basic-apps
- Source
- Commits
- Network (26)
- Issues (5)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun Jun 21 18:51:52 -0700 2009 | added initial .gitignore [howiworkdaily] |
![]() |
AUTHORS | Tue Mar 24 15:54:50 -0700 2009 | Adding authors and license files. [nathanborror] |
![]() |
LICENSE | Thu May 21 07:33:57 -0700 2009 | Accidently had the wrong name in the license fi... [nathanborror] |
![]() |
README.rst | Fri Dec 11 17:28:18 -0800 2009 | Removing whitespace from README. [nathanborror] |
![]() |
basic/ | Sat Mar 06 16:11:30 -0800 2010 | Changed fulltitle block to just title [nathanborror] |
![]() |
setup.py | Fri Dec 11 17:27:53 -0800 2009 | Updating setup.py [nathanborror] |
README.rst
An example of the markup is:
<inline type="media.photo" id="1" />
In your template you would say:
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.<app_name> to your project's settings.py file. (replace <app_name> with the apps you wish to use, naturally).
Below are a list of per app dependancies:
Dependancies
- Basic Inlines are required to use the Blog app
- Django Comments (https://www.djangoproject.com/documentation/add_ons/#comments) are required for the blog app
- Django Tagging (https://code.google.com/p/django-tagging)
- Markdown (https://www.djangoproject.com/documentation/add_ons/#markup)
- BeautifulSoup (https://www.crummy.com/software/BeautifulSoup/) is required to use the blog and, subsequently, the inlines app.
- Dateutil (https://labix.org/python-dateutil)
- Django Registration for the invitations app
Inlines
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.
The type attribute is app_name.model_name and the id is the object id. Pretty simple.
{% load inlines %}
{{ post.body|render_inlines }}