Warning
This package is not in active development. It's likely not functional with the latest Python and/or Django version. If you like to take over the project please contact me.
django-frontendadmin is a set of templatetags to allow an easy and unobstrusive way to edit model-data in the frontend of your page.
This package provides an easy example project, a weblog with comments. Here is a quick step-by-step guide how to get this running quickly:
- Open your terminal and cd to the
django-frontendadmin/example_project/
directory. $ ./manage.py syncdb
and create a superuser.$ ./manage.py runserver
and point your browser tohttp://127.0.0.1:8000/admin/
.- Authenticate yourself with the username/password you provided in step 2.
- Go to the frontpage
http://127.0.0.1:8000/
and start playing. - Put some beer in your fridge and call me. :-)
Put
frontendadmin
in yourINSTALLED_APPS
in the settings.py of your django project.Add
django.core.context_processors.request
to yourTEMPLATE_CONTEXT_PROCESSORS
in the settings.py of your django project. If this is not available (default since some days) put this snippet into your settings:TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.request', 'django.core.context_processors.auth', 'django.core.context_processors.debug', 'django.core.context_processors.i18n', 'django.core.context_processors.media', )
Include frontendadmin urls in your urlsconf:
(r'^frontendadmin/', include('frontendadmin.urls')),
Load the
frontendadmin_tags
library in every template you want to use the frontendamin links. (see below):{% load frontendadmin_tags %}
There are three templatetags to either create, change or delete objects:
{% frontendadmin_add queryset_of_objects label_for_link %} {% frontendadmin_change object_to_change label_for_link %} {% frontendadmin_delete object_to_delete label_for_link %}
Assumed that you have a weblog application and using generic-views, your template might look so:
{% for entry in object_list %} <div> <h2>{{ entry.title }}</h2> {{ entry.body }} <div> {% endfor %}
A proper implementation of frontendadmin would be:
{% frontendadmin_add object_list %} {% for entry in object_list %} <div> <h2>{{ entry.title }}</h2> {{ entry.body }} {% frontendadmin_change entry %} {% frontendadmin_delete entry %} <div> {% endfor %}
Custom labels can be used as the last argument to any tag:
{% frontendadmin_add object_list 'Post an entry' %} {% for entry in object_list %} <div> <h2>{{ entry.title }}</h2> {{ entry.body }} {% frontendadmin_change entry 'Edit this entry' %} {% frontendadmin_delete entry 'Remove it permanently' %} <div> {% endfor %}
Thats all. Frontendadmin will automatically check whether the current user has add/change/delete permissions for the given model.
Frontendadmin has build-in ajax support using the jquery library. See the template-sources for details.
Admin forms will be used if registered with the model you are trying to use. If you have a model admin called
EntryAdmin
registered withdjango.contrib.admin.site
then frontendadmin will use any form associated with, specified inEntryAdmin.Meta.form
.You can also set which forms will be used for a specific model. The forms may be in your codebase, or anywhere on your python path. This is handy for custom widgets like split datetime fields and WYSIWYG editors. Set the following settings directives to see custom forms in action:
FRONTEND_FORMS = { 'blog.entry': 'blog.forms.EntryForm', }
In this example, the
entry
model in theblog
app will be rendered with theEntryForm
within theblog.forms
module. The key for the dictionary isapp_label
.model_name
and must be all lower case. The value of the dictionary ismodule_name
.form_class
and must match the capitalization of the actual module.You may define which fields to include or exclude on a per model basis from inside your settings. Here is a snippet that blocks a user from being able to change the
user
field on their profile and limits them to only information that they should be able to edit:FRONTEND_EXCLUDES = { 'profiles.userprofile': ('user',) } FRONTEND_INCLUDES = { 'profiles.userprofile': ('address1','address2','avatar') }
This will include the
address1
,address2
, andavatar
fields and exclude theuser
field from the form. Notice the key for both dictionaries isapp_label
.model_name
and must be all lower case.Custom form templates will be used by default if they exist. For a model named
entry
in the appblog
the frontendadmin will try to usefrontendadmin/blog_entry_form.html
for the full form andfrontendadmin/blog_entry_form_ajax.html
for the ajax form. If they do not exist, the defaults will be used.
The application is licensed under the New BSD License
. See the LICENSE File
for details.