I'm hoping somebody has run into this issue before, failing that,
perhaps someone can see a glaring mistake in my code.. I'm getting a
recursive loop somehow while following the example:
http://code.djangoproject.com/wiki/NewformsHOWTO#Q:HowdoIaddanextracolumntothechangelistview
In the __init__.p
-----
> > from django import newforms as forms
> >
> > django throw an exception : "Error was: cannot import name newforms"
>
> > But when i do
> > ---
Hello, and welcome to Django.
A long time ago, the original "forms" was removed and replaced with
"newforms". To keep applications working during the transition, both "forms"
and "newforms" were kept side-by-side for awhile. The idea was, after the
t
Hey there,
newforms was renamed to forms for the Django 1.0 release, this is the
reason why the statement "from django import newforms as forms"
doesn't work (because newforms does not exist anymore). Anywhere you
see newforms you can probably replace with forms. What tutorials
On Tue, Jun 8, 2010 at 3:46 PM, refreegrata wrote:
> hello list
> i'm a newbie with django trying to learn
> Now i have a question
> when i do
> ---
> from django i
hello list
i'm a newbie with django trying to learn
Now i have a question
when i do
---
from django import newforms as forms
django throw an exception : "Error was: cannot i
Whoops, I think I misstated my use case. A better description:
All the fields are required, but I don't want to return a
forms.ValidationError if the entire form is blank, but I do if it is
partially filled, I simply want to drop it.
Perhaps this is simply bad design. Upon further consideration I
Hi Shawn,
I am referring to forms.ModelForm, I think it might apply to forms as
well, but I can't think of a good use case off the top of my head.
I suppose I might have an uncommon use case. I display a form that has
several optional parts (that have different models) that can be
dynamically add
On Dec 24, 2009, at 2:51 PM, Aristotle Miternan wrote:
> Hello all,
>
>I'm fairly new to Django and I noticed a curious behavior of
> forms. I noticed that there is no simple way to test a form for a form
> not being filled at all. I think it might be a semi-common use case
> that you might
Hello all,
I'm fairly new to Django and I noticed a curious behavior of
forms. I noticed that there is no simple way to test a form for a form
not being filled at all. I think it might be a semi-common use case
that you might want to simply not generate a new model instance if a
form has no in
Hi, thanks for the reply.
ImageWithThumbsField is custom field which extends ImageField. It
creates a thumbnail. I am using it in my model definition, nothing to
do with a form. syncdb is ignoring this field when it creates the
table completely.
On 23 Aug, 18:39, Daniel Roseman wrote:
> On Aug
Hi, thanks for the reply.
ImageWithThumbsField is custom field which extends ImageField. It
creates a thumbnail. I am using it in my model definition, nothing to
do with a form. syncdb is ignoring this field when it creates the
table completely.
On 23 Aug, 18:39, Daniel Roseman wrote:
> On Aug
On Aug 23, 3:44 pm, Hanpan wrote:
> Hi,
>
> I have created a custom field type, which I am using like so:
>
> image_thumb = ImageWithThumbsField(_('preview image'),
> upload_to='uploads/projects')
>
> But for some reason, when I run syncdb this custom field is being
> completely ignored. I tried
Hi,
I have created a custom field type, which I am using like so:
image_thumb = ImageWithThumbsField(_('preview image'),
upload_to='uploads/projects')
But for some reason, when I run syncdb this custom field is being
completely ignored. I tried using the 'widget' argument, but that
caused an er
Hi,
I have a newform that works as intended. I want to add admin
functionality such that within the same view I can handle creation of
a newform or passing back a model's values to the template for
editing. This is supposed to be simple with newforms but I'm stuck,
hoping for help.
Thanks for the help. I created the custom widget. It works OK but I
cannot figure out how to get my custom class (for css) to render .
Please check this out when you get a chance.
class NakedLabelWidget(forms.Widget):
"""
A widget that produces a naked label
"""
def __init__(self, attrs=N
On 5/11/2009 12:29 PM, Nash-t wrote:
> I apologize if this is a dumb newbie question...
> I am trying to create a newform label that doesn't have an associated
> input field. This label is used as a title for a set of input fields.
> I don't want to use django templates because of the way the for
I apologize if this is a dumb newbie question...
I am trying to create a newform label that doesn't have an associated
input field. This label is used as a title for a set of input fields.
I don't want to use django templates because of the way the form/data
is passed around and saved on the serv
Thanks a lot ! That worked great. I can't believe how easy it is to
slam everything back into the db using the instance and prefix.
Django ftw!!
rob
>
> Just use them all side-by-side in your views and templates,
> potentially using prefixes
> (http://docs.djangoproject.com/en/dev/ref/form
fk <- model Ingredients
> fk <- model Directions
>
> Can I render all these related models in one view and handle saving it
> through the newforms architecture?
>
> I tried form inheritance but the metas get
Ingredients
fk <- model Directions
Can I render all these related models in one view and handle saving it
through the newforms architecture?
I tried form inheritance but the metas get overwritten and only the
Ingredient fields show up by the time you get to SuperForm:
class RecipeForm(Model
text = forms.CharField(label="text", max_length=10,
widget=forms.TextInput(
attrs={'size':'10', 'class':'inputText'}))
Thanks Ayaz the above works perfectly.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
On 26-Mar-09, at 2:26 PM, NoviceSortOf wrote:
> It would seem natural that there would be a length or size parameter
> on something in forms and/or models Charfield to control the html
> display of the field length.
How a field in a form in Django is rendered is determined by the
corresponding
It would seem natural that there would be a length or size parameter
on something in forms and/or models Charfield to control the html
display of the field length.
ie.
firstname = forms.CharField(max_length=20, size = 4)
I've found this hack discussed to the fields.py [link below] but it
dates
On Tue, 2009-03-10 at 13:15 +1100, Malcolm Tredinnick wrote:
> On Mon, 2009-03-09 at 07:55 -0700, Tipan wrote:
> >
> > > Do you mean they are inserted into the source as "ó" and so
> > > the user sees, literally, "ó"?
> > >
> >
> > Yes. The string has the html code for the accent as you s
On Mon, 2009-03-09 at 07:55 -0700, Tipan wrote:
>
> > Do you mean they are inserted into the source as "ó" and so
> > the user sees, literally, "ó"?
> >
>
> Yes. The string has the html code for the accent as you show above.
I showed two possiblities. Which one is it? If the string is be
> Do you mean they are inserted into the source as "ó" and so
> the user sees, literally, "ó"?
>
Yes. The string has the html code for the accent as you show above.
> This could be a bug. Any strings provided by Django itself (and this
> includes translated strings, although we don't mak
On Sun, 2009-03-08 at 04:55 -0700, Tipan wrote:
> I'm trying to pass a translated string to a select box using a Forms
> Select widget and it always presents the output string with all the
> accent HTML entity codes.
>
> In my models file, I have a range of subjects:
>
> Models.py
> from django.
I'm trying to pass a translated string to a select box using a Forms
Select widget and it always presents the output string with all the
accent HTML entity codes.
In my models file, I have a range of subjects:
Models.py
from django.utils import translation
from django.utils.translation import ug
On Mon, Jan 12, 2009 at 8:25 AM, Karen Tracey wrote:
> On Mon, Jan 12, 2009 at 6:11 AM, seki wrote:
>>
>> Hi guys,
>> I have been teaching myself Django and I have worked with the latest
>> release. To me it seems the new library isn't shipped with the
>&g
On Mon, Jan 12, 2009 at 6:11 AM, seki wrote:
>
> Hi guys,
> I have been teaching myself Django and I have worked with the latest
> release. To me it seems the new library isn't shipped with the
> newforms library ( i.e Django-1.0.2-final)...
> I just coppied the librar
Hi guys,
I have been teaching myself Django and I have worked with the latest
release. To me it seems the new library isn't shipped with the
newforms library ( i.e Django-1.0.2-final)...
I just coppied the library from an older version.
Hope that's p
Hi Robin,
On Mon, 2008-11-24 at 12:45 +, Robin Becker wrote:
> We have some legacy code that wants to display a partially filled form. One
> of
> the fields is required to be non-empty (it's a captcha) so when re-issuing
> the
> form partially filled I've been doing this
>
> class EmailF
We have some legacy code that wants to display a partially filled form. One of
the fields is required to be non-empty (it's a captcha) so when re-issuing the
form partially filled I've been doing this
class EmailForm(forms.Form):
.
vericode = forms.CharField(max_length=5, required=True
Actually, extra by itself does exactly what I want. For some reason I
couldn't see it - I guess I just got caught up in the specific name.
Thanks.
On Nov 4, 10:32 am, Daniel Roseman <[EMAIL PROTECTED]>
wrote:
> On Nov 4, 5:57 pm, Xiong Chiamiov <[EMAIL PROTECTED]> wrote:
>
> > I'm in the process
On Nov 4, 5:57 pm, Xiong Chiamiov <[EMAIL PROTECTED]> wrote:
> I'm in the process of converting a bunch of sites from pre-nfa to
> 1.0. One of the things I've run across is the change in inlines in
> the admin interface. Previously, there was
> (http://www.djangoproject.com/documentation/0.96/m
I'm in the process of converting a bunch of sites from pre-nfa to
1.0. One of the things I've run across is the change in inlines in
the admin interface. Previously, there was (http://
www.djangoproject.com/documentation/0.96/model-api/#many-to-one-relationships)
a parameter called num_in_admin
On Oct 17, 5:50 pm, Jeff Gentry <[EMAIL PROTECTED]> wrote:
> > Oops. It could also read
> > from django import newforms as forms
> > in which case you should change it to
> > from django import forms
>
> Right, that's what I was thinking.
>
&
> Oops. It could also read
> from django import newforms as forms
> in which case you should change it to
> from django import forms
Right, that's what I was thinking.
> but I hope you've got the idea: basically newforms has *become* forms.
Yup - just wa
Jeff Gentry wrote:
> Hi there ...
>
> To date, I've not been using Django's form system (nor 'newforms'), but am
> trying to integrate another app into a suite that I'm developing. The
> code on this is a bit older and is using newforms - when I fire
Jeff Gentry wrote:
> Hi there ...
>
> To date, I've not been using Django's form system (nor 'newforms'), but am
> trying to integrate another app into a suite that I'm developing. The
> code on this is a bit older and is using newforms - when I fire
Jeff Gentry wrote:
> Hi there ...
>
> To date, I've not been using Django's form system (nor 'newforms'), but am
> trying to integrate another app into a suite that I'm developing. The
> code on this is a bit older and is using newforms - when I fire up the
Hi there ...
To date, I've not been using Django's form system (nor 'newforms'), but am
trying to integrate another app into a suite that I'm developing. The
code on this is a bit older and is using newforms - when I fire up the
server (running off of the 1.0 branc
{{ g.name }}
{% endfor %}
Couldn't be simpler. But now in newforms, i'm a bit lost ...
VIEWS:
# Get all that user's
groups
groups =
Groups.objects.filter(userProfile__user__pk=request.user.
gg/registration/views.py", line 12, in
>>
>> File "/usr/lib/python2.5/site-packages/django_registration-0.5-
>> py2.5.egg/registration/forms.py", line 7, in
>>
>> ImportError: cannot import name newforms
>> [...]
>>
>>
>
egister, I
> get the error:
>
> File "/usr/lib/python2.5/site-packages/django_registration-0.5-
> py2.5.egg/registration/views.py", line 12, in
>
> File "/usr/lib/python2.5/site-packages/django_registration-0.5-
> py2.5.egg/registration/forms
kages/django_registration-0.5-
> py2.5.egg/registration/views.py", line 12, in
>
> File "/usr/lib/python2.5/site-packages/django_registration-0.5-
> py2.5.egg/registration/forms.py", line 7, in
>
> ImportError: cannot import name newforms
>
> Does anyone know wha
r/lib/python2.5/site-packages/django_registration-0.5-
py2.5.egg/registration/forms.py", line 7, in
ImportError: cannot import name newforms
Does anyone know what would cause this error? The line it's
complaining about is "from django import forms", which if I try from
the comma
Hello django-users,
after searching google and this group and not finding any helpful
answers I hope you can help me.
I am making an event-app which allows me to manage my own events I
organize for me and my friends.
I add my friends to the database. Then I create an event and choose
which frien
Add extra variable to the context in this way:
http://code.djangoproject.com/wiki/NewformsHOWTO#Q:HowcanIpassextracontextvariablesintomyaddandchangeviews
then override your submit_line.html template and put into it something
like that:
{% if my_show_delete_link %}
{% if show_delete_link %}{% tran
I like that there's a "delete" checkbox with NFA, but what if I don't
want the item to be delete-able? I have a case where I'm they're an
inline, and I don't want anyone to be able to delete those items
unless the parent is deleted. Can this be done?
--~--~-~--~~~---~--
I was playing with this again tonight and it's just not working for me
no matter what I try. I'm wondering if there are issues with
ManyToMany and Inlines and trying to override them?
On Jul 24, 5:23 pm, "Rob Hudson" <[EMAIL PROTECTED]> wrote:
> > SpecialBookFormSet = inlineformset_factory(News
Good catch. Thank you
On Aug 3, 10:14 pm, "Pedro Valente" <[EMAIL PROTECTED]> wrote:
> I'm not sure if it's your case, but I got the AlreadyRegistered errors
> because before the merge I used the NFA branch and had an admin import
> inside __init__.py (not needed anymore).
>
> I had forgotten abo
Hi guys,
Does anyone know if it's possible to construct a single widget from 2
model fields?
I want to make a "Select" widget, with a primary value, and a related
value eg:
object whos id is 1, and whose foreign key is
7
Any ideas much appreciated.
Thanks,
Martin
--~--~-~--~~
Hi,
GoFlow, a (the) workflow engine for django:
http://code.google.com/p/goflow/
GoFlow provides built-in applications that uses modelforms to edit
workflow objects.
Cheers,
Eric Simorre
On Aug 18, 9:52 pm, DoctorMO <[EMAIL PROTECTED]> wrote:
> Hello All,
>
> This is just a quick FYI to state w
I have to say, I discovered my own problem, as usually happens
directly after I make a post for help.
The documentation has listed:
Model FieldForms Field
TextFieldCharField with widget=Textarea
I tried that to no avail. Eventually I found a snippet of co
I'm terribly new and inexperienced, and after 30-40 minutes of
googling I cannot find anything to help my problem:
class roomForm(forms.Form):
authorName = forms.CharField(max_length = "30")
authorWebsite = forms.CharField(max_length = "50")
title = forms.CharField(max_len
Has anyone customized the admin (specifically with newforms-admin) to
collapse/expand apps? I'd like to keep them out of the way as much as
possible. I'm thinking some javascript that would expand/collapse them
and store the preference in a cookie or the session. Is this a dumb
idea?
Hello All,
This is just a quick FYI to state what I'm currently working on and
see if anyone has anything to add or good ideas (or even criticisms)
Since django can do model forms which reflect a models fields and save
the created object appropriately. I'm researching the possibility of
creating
I had a form that was working with oldforms generic and had some
hidden fields. After the newforms-admin merge and newforms-generic,
the hidden fields are being passed as NULL. In
'BackwardsIncompatibleChanges,' it says "You'll probably need to
update any templates used by th
Hi,
Any one knows if the newforms-admin branch of the django-tagging
project is merged in the trunk? or they will continue to update on
that branch?
Regars.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"D
I am experiencing same error message with r8053, however my situation
is a bit different:
- commenting out fieldsets definition doesn't help,
- everything works perfectly on local dev server and fails deployed
through mod_wsgi and mod_python (I didn't try with fcgi)
I managed to narrow down the p
ld experiment with removing pieces
> of it to see which field is causing the error. Basic fieldsets validation
> works (I'm sure it's got tests and I have models that use it and still work
> on current newforms-admin), so it's something specific to your model. If
> you
solate the error.
2008/7/21 Karen Tracey <[EMAIL PROTECTED]>:
>> Uhm, the solution was to delete the database and recreate it. Now it
>> runs correctly.
>
> Note this sort of thing (delete/recreate database) IS NOT generally
> necessary for updating to the newforms admin
On Tue, Jul 22, 2008 at 2:17 PM, Matthew <[EMAIL PROTECTED]> wrote:
>
> Hey everyone, I recently updated a development version of my Django
> site to use the newforms admin, following the tutorial here
>
> http://oebfare.com/blog/2008/jul/20/newforms-admin-migration-and-scre
Doh! You're absolutely right Malcom. Sorry, don't know why I didn't
see that before.
So, now that I have my lovely permission, I have a new problem...
I need the ability to let a user 'add' a story, even if they can't
'approve' one. So, I'm wondering where I should try to disable the
field? In th
That works much better Malcolm, thank you very much. Appreciate the
explanations too.
Cheers,
Peter
On Jul 22, 3:23 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Tue, 2008-07-22 at 12:21 -0700, Peter Bailey wrote:
> > Hi all. I am attempting to convert an app I am writing to use the n
]> wrote:
>
> > Hey everyone, I recently updated a development version of my Django
> > site to use the newforms admin, following the tutorial here
>
> >http://oebfare.com/blog/2008/jul/20/newforms-admin-migration-and-scre...
> > It all went fairly well, but I do hav
ister()
but it still shows me permission denied. I am the only super user on
the site. Any recommendations.
On Jul 21, 12:46 am, "Justin Wong" <[EMAIL PROTECTED]> wrote:
> Never mind,newforms-adminworks great. :)
>
> I forgot that I had copied a custom version of the ol
Hi all. I am attempting to convert an app I am writing to use the nfa.
I have looked at all the docs available about this, but must have
missed something. I am using:
Django version 1.0-alpha-SVN-8053
Anyway, I have changed my urls.py file to be like so:
from django.contrib import admin
(r
Hello django-users,
What is the preferred way of extending the Admin interface with
functionality (not just a template override) (using the newforms
admin)? I ask because I'm trying to build something simple.
I have a model NewsletterSubscriber which has just a name, an active
boolean, and
Hi everyone,
I'm trying to enforce a customer permission on Add/Update. In my
model, I have defined the permission:
permissions = (
('can_approve_stories','Can Approve Stories'),
)
in my model.ModelAdmin I have:
def change_view(self, request, obj_id):
i
I believe you can override get_form and have it create a new modelform
for each request, you'd probably have to look into the source to see
what the method and signature look like.
On Jul 21, 8:04 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote:
> Doh! You're absolutely right Malcom. Sorry, don't k
Uhm, the solution was to delete the database and recreate it. Now it
runs correctly.
2008/7/21 Florencio Cano <[EMAIL PROTECTED]>:
> Hi,
> After viewing the new documentation for the admin interface and
> modifying, properly I think, the files when I try to access
> http://localhost:8000/admin/ I
On Mon, Jul 21, 2008 at 10:59 AM, Florencio Cano <[EMAIL PROTECTED]>
wrote:
>
> Uhm, the solution was to delete the database and recreate it. Now it
> runs correctly.
>
Note this sort of thing (delete/recreate database) IS NOT generally
necessary for updating to the newforms ad
On Mon, 2008-07-21 at 15:46 -0700, Brandon Taylor wrote:
> Hi everyone,
>
> I'm trying to enforce a customer permission on Add/Update. In my
> model, I have defined the permission:
>
> permissions = (
>('can_approve_stories','Can Approve Stories'),
> )
>
>
>
>
On Jul 20, 4:22 pm, slav0nic <[EMAIL PROTECTED]> wrote:
> #admin.py
> from django.contrib import admin
> from profile.models import UserProfile
> from django.contrib.auth.models import User
>
> class ProfileInline(admin.StackedInline):
> model = UserProfile
> extra = 1
> max_num = 1
>
CKED)
How can the same effect be achieved with newforms-admin?
Thanks for your help,
Bernd Donner
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send e
Never mind, newforms-admin works great. :)
I forgot that I had copied a custom version of the old admin templates
and it was parsing that instead.
Cheers!
Justin
On Sun, Jul 20, 2008 at 7:27 PM, Justin Wong <[EMAIL PROTECTED]> wrote:
> Well, I tracked down the admin/index.html page
.Model):
> ...
> user = models.ForeignKey(User, unique=True, edit_inline=models.STACKED)
>
> How can the same effect be achieved with newforms-admin?
Have you searched for the word "inline" in the admin documentation (or
the backwards incompatible changes entry for this cha
rl': 'market/order/',
'name': ,
'perms': { 'add': True,
'change': True,
'delete': True}},
es, and my apps are being imported
correctly. I'm not getting error messages telling me that I'm
importing multiple times.
I'm logged on as the superuser, so that shouldn't be a problem... right?
I started a new project and newforms-admin seems to work great.
If anyone has an
pped it, ran the development server, and all
went to my localhost admin page and I have 'Auth', 'People' and 'Sites' I
can edit. I'm running trunk r8007.
You can't really be using trunk 7951 -- that's from before newforms-admin
merge which was 7967?? T
ing like:
>
> class UserProfile(models.Model):
> ...
> user = models.ForeignKey(User, unique=True, edit_inline=models.STACKED)
>
> How can the same effect be achieved with newforms-admin?
The docs know all:
http://www.djangoproject.com/documentation/admin/#inlinemodeladmin-object
min site.
> > > This was
> > > done by somthing like:
>
> > > class UserProfile(models.Model):
> > > ...
> > > user = models.ForeignKey(User, unique=True, edit_inline=models.STACKED)
>
> &g
> > This was
> > done by somthing like:
> >
> > class UserProfile(models.Model):
> > ...
> > user = models.ForeignKey(User, unique=True, edit_inline=models.STACKED)
> >
> > How can the same effect be achieved with newforms-admin?
>
> The
#admin.py
from django.contrib import admin
from profile.models import UserProfile
from django.contrib.auth.models import User
class ProfileInline(admin.StackedInline):
model = UserProfile
extra = 1
max_num = 1
class ProfileAdmin(admin.ModelAdmin):
inlines = (ProfileInline,)
admi
Hi
I'm installing it from SVN and got "You don't have permission to edit
anything", I made it work before, but now when I try to follow the
book can't. Could you tell me what should I add to have full
permissions?
Regards
On Jul 20, 7:43 am, "Jon Atkinson" <[EMAIL PROTECTED]> wrote:
> On Sun, Ju
> You can't really be using trunk 7951 -- that's from before newforms-admin
> merge which was 7967?? Try updating to latest trunk?
So I feel slightly ... foolish :-)
--Jon
--~--~-~--~~~---~--~~
You received this message because you are subscrib
...so if you were
> running 7951 it must have been a newforms-admin branch version? Not sure
> why that wouldn't have worked but if it's fixed in latest it's probably not
> worth tracking down.
Yes, it does work for me. I had both the newforms-admin and an older
trunk checked
On Sun, Jul 20, 2008 at 12:32 PM, Jon Atkinson <[EMAIL PROTECTED]>
wrote:
>
> > You can't really be using trunk 7951 -- that's from before newforms-admin
> > merge which was 7967?? Try updating to latest trunk?
>
> So I feel slightly ... foolish :-)
>
Do
__init__.py file; that was the
> recommendation when I first migrated to newforms-admin but it led to
> multiple registrations like this so was replaced by autodiscover(). You
> should not have an explicit import of your app's admin anywhere;
> autodiscover() is, I believe, th
I'm not sure what 'book' is being referred to here, since there's
certainly nothing printed that covers newforms-admin. Even the tutorial, I
believe, is still missing mention of autodiscover(), which means if you are
following it exactly that may be why you are getting this messa
ot put a print in before the import and ensure
> >> > adutodiscover() is really being called and attempting to import the
> admin
> >> > module for each installed app.
>
> Okay, I've spent a little time on this. There seem to be a few problems.
>
> First of
being called and attempting to import the admin
>> > module for each installed app.
Okay, I've spent a little time on this. There seem to be a few problems.
First of all, I'm a little confused about where to use
admin.site.register(). A few months ago I checked out the
newform
p, at a minimum, is being found by
> autodiscover(). If not put a print in before the import and ensure
> adutodiscover() is really being called and attempting to import the admin
> module for each installed app.
>
> (Also I'm not sure what 'book' is being referred to here
utodiscover() is really being called and attempting to import the admin
> > module for each installed app.
>
> > (Also I'm not sure what 'book' is being referred to here, since there's
> > certainly nothing printed that covers newforms-admin. Even the tut
On 19-Jul-08, at 10:34 PM, Ramdas S wrote:
> Can you just share the wiki page link please. I need some place to
> start
start with an svn co. keep running the prog till there are no errors.
--
regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/code/
--~--~-~--~-
On Sun, Jul 20, 2008 at 3:37 AM, SanPy <[EMAIL PROTECTED]> wrote:
> Is it possible to allow a non-staff member access to a custom
> AdminSite? When I try to login as a non-staff user, I get the error
> message: "Please enter a correct username and password. Note that both
> fields are case-sensiti
On Sun, Jul 20, 2008 at 2:01 AM, stryderjzw <[EMAIL PROTECTED]> wrote:
>
> Strange, I'm getting the message "You don't have permission to edit
> anything." on the admin homepage. I've done admin.autodiscover() on
> the project urls page, I've created admin.py files for my models and
> registered t
1 - 100 of 1603 matches
Mail list logo