Thanks a lot for all the answers!
Ray
Don Arbow wrote:
> On Oct 29, 2006, at 8:49 PM, Rares Vernica wrote:
>> Where is the django function that does the "first_name" -> "First
>> Name"
>> transformation? (The function is used by the Admin interface.)
>
>
>
> It's in the result_headers method
I had this proble too. Heres how i solved it.
First i had a model method:
def get_wordcount(self):
return len(self.content.split())
(content is a TextField)
Then in my template i used it like this:
{{ object.content|truncatewords:60 }}
{% load base_utils %}
{% ifg
thanks Terry. I posted 3 days ago, just couldn't see it in the list
until now. ;(
On Oct 31, 1:29 am, "Terry" <[EMAIL PROTECTED]> wrote:
> pength wrote:
> > I think it's a common way in C or C++ project to do like this, just
> > don't know how to do it in Django. I have tried to put
> > "MAX_UNIT
Sorry, got it.
I had to remove the /models directory and rename mydarksecret.py to
models.py. I thought I could just change the import, but apparently
not. Once I moved the files, it all worked ... like magic ;-)
Cheers,
Sandy
--~--~-~--~~~---~--~~
You received
Hey all!
I've got most of the heavy lifting completed in moving from 0.91 ->
0.95. But now I get the following:
ERROR: relation "models_game" does not exist SELECT
"models_game"."id","models_game"."state","models_game"."title","models_game"."summary","models_game"."method","models_game"."motive"
It has to be a HEAD request.
On 10/30/06, Rob Hudson <[EMAIL PROTECTED]> wrote:
>
> I found the bookmarklets in the admin doc pages and thought this would
> be a useful thing for our teams to use. As a quick test I used curl -i
> URL to see if the headers are set and they aren't. I told curl t
On Oct 29, 2006, at 8:49 PM, Rares Vernica wrote:
>
> Where is the django function that does the "first_name" -> "First
> Name"
> transformation? (The function is used by the Admin interface.)
It's in the result_headers method in django/contrib/admin/
templatetags/admin_list.py. If you have
On 10/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> 1) {{form.teacher}} doesn't render the actual teacher assigned to that
> course but just the first in the list of teachers.
>
I'm guessing here since I don't have open any project to test it on,
but I suspect that is because you are init
I found the bookmarklets in the admin doc pages and thought this would
be a useful thing for our teams to use. As a quick test I used curl -i
URL to see if the headers are set and they aren't. I told curl to use
my current Firefox cookies (-b flag) and they still weren't there. So
I set up the
Thanks for your responses, I think Guillermo got the point, that's what
I was asking!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegro
It is possible, that the clock on the server is set differently than
the clock on your local machine. Have you checked that?
Good luck!
Aidas Bendoraitis aka Archatas
On 10/26/06, 张沈鹏 <[EMAIL PROTECTED]> wrote:
>
> I set
>
> TIME_ZONE = 'CCT'
> (in China)
>
> and
> use
> uploadBeginFrom = m
On 10/27/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote:
>
> On 10/26/06, Ice9 <[EMAIL PROTECTED]> wrote:
> >
> > Hi, I'm kinda new to django, and I ran into a problem
> > I'm making a cutom form, and one of the field I want it to be
> > SelectField. the problem is I dont want to hard code the
Hi Merric,
Your working solution (the one without a custom manager) is simpler and
straightforward. Just wondering if you see a particular advantage in
trying to use a custom manager to accomplish this.
-Rajesh
--~--~-~--~~~---~--~~
You received this message be
On 10/30/06, angel <[EMAIL PROTECTED]> wrote:
> I know there are various topics on this subject, but my concrete
> question is: How mature is the ajax support in Django at the moment ?
> If i download django now , what kind of ajax support can it offer, in
> terms of helpers , etc , and how stable
I'm am having a problem with the DateTimeField when I save the data
through the related class.
Example
class Transaction:
user =
ForeignKey(UserProfile,edit_inline=models.TABULAR,num_extra_on_change=0)
DateTimeField(auto_now_add=True, blank=True)
When I add data to Transaction, through the Ad
I have recently had the same problem, but I solved it adding null=True
to the DateTimeField.
Good luck!
Aidas Bendoraitis aka Archatas
On 10/30/06, Merric Mercer <[EMAIL PROTECTED]> wrote:
>
> I'm am having a problem with the DateTimeField when I save the data
> through the related class.
>
>
Hello!
I want to use captcha protection for any app, and I do:
### urls.py
(r'^captcha/', include('anastas.apps.captcha.urls')),
### anastas.apps.articles.urls.py
(r'^create/$', 'anastas.apps.captcha.views.verify',
dict(forward_to='anastas.apps.a rticles.views.create_article')),
### a
Or, list here some of the calculations you are trying to work
> out so you can get more feedback on this.
>
I have a table which shows Points owned by particular users. These
have an attribute of "type".
I need to display back to the user how many of each type of points they
own.
For instance,
Oh, cool - thank you for the links, I'll be bookmarking those!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe
Custom template tags... I knew I was missing something. Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscrib
On 10/30/06, Vortexmind <[EMAIL PROTECTED]> wrote:
>
> Hi
> I'm new to django and I've finished the tutorial. I want now to develop
> an application of mine, but before starting I have a question. In the
> tutorial (the polls app) we define a model (Pool, Choice) inside an app
> (polls app).
>
> B
Cheers Aidas, that's wokred for me too.
MerMer
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group
> 1. I need to enhance the underlying solution. I need to do some more
> in depth table wide caculations, working out averages etc, but based on
> a user-id. The documentation suggests that the table wide code would
> best be placed in a model manager.
Here's a thought:
class UserPoint(model
Greetings, I write
to them so that programmers of python with 3 years of experience ask
for themselves, in addition working with Django and postgresql…
Contracts by development. Send the CV to the direction [EMAIL PROTECTED]Saludos, les escribo por que se solicitan programadores de python con 3 año
Rajesh,
I wanted to see if I could do it for two reasons.
1. I need to enhance the underlying solution. I need to do some more
in depth table wide caculations, working out averages etc, but based on
a user-id. The documentation suggests that the table wide code would
best be placed in a mode
Hi,
Just guessing, but if I understood well the error you get, that's normal.
The KarmaScoreManager is not the amount of karma of a coment (or in
your case an object). It keeps in the database the karma score that a
given user gave to a specific comment (or object). As there is a
single score pe
Is it possible to pass a variable to a Customer Model Manager?
I want to pass a variable to the Customer Manager and then use this
Manager within an inclusion Tag. Example below.
class UserPoint(models.Manager):
def get_query_set(self):
return super(UserPoint,self).get_query_s
Hello all,
I would like to have a Multiple Select box, render the chosen fields of
a CommaSeparatedIntegerField.
The CommaSeparatedIntegerField stores the ability of a user to move to
a given area :
--
Mobility =
models.CommaSeparatedIntegerField(maxl
You can find the actual code here. For the template tag:
http://svn.guindilla.eu:8000/guindilla/trunk/guindilla/polls/templatetags/guindilla_polls.py
Fo the html:
http://svn.guindilla.eu:8000/www_guindilla_eu/templates/guindilla/polls/open_polls.html
And for how to use it:
http://svn.guindilla.e
With help from Malcolm, Guillermo and others, I thought I had this
karma thing working. Apparently I do not.
I'm attempting to build my own karma system that will let me allow
voting on anything, not just comments. The problem is, any votes after
the first don't appear to do anything. The previou
Hi all,
i'm having troubles doing a custom change manipulator. The code below
almost does it's job but the select fields just display the first
teacher value, not the one that is actually in the database. How do i
make this work?
In this example i could easily use the stock ChangeManipulator but
I've written up a simple Custom Field class example at
http://blog.tkbe.org. I'd appreciate any feedback.
-- bjorn
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send e
first, I have searched in this group as "settings". "global
constant"...etc, but i don't think I have got what I need. ;(
well, I want to define some global constant, like:
MAX_UNIT_FOR_ONE_USER = 100
then I want to use this constant in all the applications of my whole
project, in my views.py,
Okay, say I've got the Django tutorial poll app, and a blog app I've
just whipped up, as separate "apps" in the same Django "site". If I
wanted to display a poll / results in the blog sidebar, is there a
straightforward way to do that, or would I have to combine the two into
a single app?
Thanks
On 10/29/06, Rares Vernica <[EMAIL PROTECTED]> wrote:
> Where is the django function that does the "first_name" -> "First Name"
> transformation? (The function is used by the Admin interface.)
It's quite simple:
name = name.replace('_', ' ')
If you want to use initial caps as well, just cal
Personally, I hope that Django keeps the toolkit-independent philosphy.
No matter which one was picked I'd probably have some issues with it,
and one of the things that drew me to Django in the first place was the
ability to do things how I wanted to meet MY needs. That might be
toolkit A, it migh
I'm guessing you're using MySQL? I believe order_with_respect_to has
been broken for a while now when used with MySQL. I haven't been able
to get it working since I can remember.
There is a ticket regarding this issue...
http://code.djangoproject.com/ticket/1760
--~--~-~--~~---
Hi,
i have a problem with the order_with_respect_to field in the
Meta-Class. Editing the Model in the Admin interface (Saving new
levels) i get the exception:
You can't specify target table 'heracles_level' for update in FROM
clause
If i remove the order_with_respect_to field, it works fine.
The easiest way, for your example case, would be to make sure that the
poll app makes the poll/results available in the form of custom
template tags. Then just embed these custom tags in your blog
template's sidebar and you are done.
--~--~-~--~~~---~--~~
You rece
On 30/10/06, Bryan Murdock <[EMAIL PROTECTED]> wrote:
>
> I have a blog application, and when I click on a user in the admin, so
> it tries to go to:
>
> http://myblog.example.com/admin/auth/user/1/
>
> I get a 404. I have no idea what's going on. I have another checkout
> of this project using
On 30/10/06, Rares Vernica <[EMAIL PROTECTED]> wrote:
>
> Actually I mean this transformation:
> "first_name" -> "First name".
>
I don't know where it is and if it is actually an indivdual function
that can be performed on strings (it may be). The admin code is a bit
messy anyway. I would suggest
On 10/30/06, angel <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> I know there are various topics on this subject, but my concrete
> question is: How mature is the ajax support in Django at the moment ?
> If i download django now , what kind of ajax support can it offer, in
> terms of helpers , etc ,
Cheers,
The nice thing is, you can import your models to any application.
For instance, you have app1/gallery with models.py inside that defines
Photo and Gallery, and you have app2/photorating with models.py
inside. You need for your Rating model in app2 to use the Photo model
of app1.
No worr
Hi all,
I know there are various topics on this subject, but my concrete
question is: How mature is the ajax support in Django at the moment ?
If i download django now , what kind of ajax support can it offer, in
terms of helpers , etc , and how stable is this? (as compared to ROR
for example). W
Hi
I'm new to django and I've finished the tutorial. I want now to develop
an application of mine, but before starting I have a question. In the
tutorial (the polls app) we define a model (Pool, Choice) inside an app
(polls app).
But what I can do if I must share a model between multiple apps? Fo
pength wrote:
> I think it's a common way in C or C++ project to do like this, just
> don't know how to do it in Django. I have tried to put
> "MAX_UNIT_FOR_ONE_USER = 100" in the settings.py, and used it in
> views, but got an error as "global name MAX_UNIT_FOR_ONE_USER not
> defined", etc...
There is a function get_verbose_name in the file
django/db/models/options.py, which does the conversion.
If you need just to change the verbose_name, don't forget that there
are meta attributes verbose_name and verbose_name_plural for that
reason.
Good luck!
Aidas Bendoraitis [aka Archatas]
On
On Oct 27, 2006, at 9:57 PM, 张沈鹏 wrote:
> as title,
> if I has a class like this
>
> class Media(models.Model):
>fileByte = models.IntegerField('文件大小(单位:字节)')
>fileName = models.CharField('文件名',maxlength='255')
>class Admin: pass
zsp007:
Because English is the default language of t
48 matches
Mail list logo