No, the foreign key looks the same, but logically it's for different
purpose. You can easily imagine a table of Paint Suppliers, with a field
for their cheapest color product. And another table listing all color
products from all suppliers, with a field identifying which supplier
owns the pro
hi Roy.
you should probably be trying the 4 tutorials and create the 'polls'
application first.
the django_website is not really designed for newbies, but more as a
reference on how to do things.
regards
Ian.
On 1/5/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> anybody can help me here? p
anybody can help me here? please.
On 4 Jan 2006, at 19:42, The Boss wrote:
Nevermind. It magically started working when I tried to show someone
how it didn't work.
It probably just needed a server restart. Django's development server
code reloading stuff work's for most cases, but if you're seeing odd
behaviour it's oft
> or better, a OneToOneField since a company's main account is singular, I
have never tried this:
> class CompanyAccount(meta.Model):
company = meta.OneToOneField(enterprise.Company)
account = meta.ForeignKey(accounting.Account)
So what do you need the extra table for?! Can't you ju
You meant another table that designed specifically to link those fields?
This come to mind:
class CompanyAccount(meta.Model):
company = meta.ForeignKey(enterprise.Company)
account = meta.ForeignKey(accounting.Account)
or better, a OneToOneField since a company's main account is s
> I think this requires a lazy-fication.
Perhaps another solution is each linking to a separate (common) table?
That avoids referencing issues.
-rob
Sure thing, Arthur.
From my observation, it's a kind of convention built into django on
every ForeignKey field. Those get a default column name with '_id'
suffix. But it's easily overridden by specifying db_column parameter. As
of Primary key, the only magic I know is if a model does not have
Nevermind. It magically started working when I tried to show someone
how it didn't work.
I'd say, in your 'change history' table, place a field and save the
state of all effected data before the actual change is frozen.
Good luck,
Armin
Hi
>> The following (simplified) model gives the SQL error "ERROR:
>> column "invoice_number" does not exist":
>>
>> class Invoice(meta.Model): invoice_number =
>> meta.PositiveIntegerField(primary_key=True)
>>
>> class Invoice_item(meta.Model): # General invoice item
>> invoice_number = meta.For
I agree, there seems to be a small typo in django/core/management.py
col_type = db.DATA_TYPES[data_type]
if col_type is not None:
--> field_output = [db.db.quote_name(f.column), col_type %
rel_field.__dict__]
field_output.append('%sNULL' % (not f
Hi,
I'm having trouble figuring out how to customize the appearance of a
foreign key that's edited inline in the admin interface. For example,
if I wanted to change how the poll choices from the tutorial are
displayed, by suppressing the number of votes, or changing the order in
which the votes and
On 1/3/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote:
> Who did the info graphic on top here:
> http://www.washingtonpost.com/wp-dyn/content/custom/2005/12/30/CU2005123001137.html
The graphics staff. See the bottom of that page for info.
Adrian
--
Adrian Holovaty
holovaty.com | djangoproject.com |
>happen outside of the view (and come to the view as a parameter). The
>other thing is that _all_ my views will need this and to me that just
>feels a bit dirty. I guess it is probably the best way, though.
The easiest way out for that is to provide a decorator for your view
functions that just t
I thought about that and actually started implementing it, but then I
realised that it is not very maintainable and things will be too
coupled. (I like using the development server for development and I
would like to try and deploy on lighttpd)
Plus then every resource effectively has two urls wh
i like the way, related objects are being displayed (and deleted) in
the admin-interface and i´d like to integrate that into my application.
is there a way to display (and delete) multiple related objects using
generic views?
right now, i am importing some stuff from admin.main like
_get_d
Hi all
The following (simplified) model gives the SQL error "ERROR: column
"invoice_number" does not exist":
class Invoice(meta.Model):
invoice_number = meta.PositiveIntegerField(primary_key=True)
class Invoice_item(meta.Model): # General invoice item
invoice_number = meta.ForeignKey(I
On Wed, 04 Jan 2006 16:31:34 +0200, Le Roux <[EMAIL PROTECTED]> wrote:
Thanks. I'll do that. It just feels like that type of thing should
happen outside of the view (and come to the view as a parameter). The
other thing is that _all_ my views will need this and to me that just
feels a bit dirt
Thanks. I'll do that. It just feels like that type of thing should
happen outside of the view (and come to the view as a parameter). The
other thing is that _all_ my views will need this and to me that just
feels a bit dirty. I guess it is probably the best way, though.
2006/1/4, iGL <[EMAIL PROTECTED]>:
>
> on windows, MEDIA_URL and MEDIA_ROOT, did not quit help; I haven't
> understood why...
MEDIA_URL is used for file or image upload.
>
> all I did then was to put:
>
> in urls something like
> r'^m/(?P.*)$', 'media', {'document_root':
> 'D:\\django\\testapp\\m
Hi, need a hand on this.
I have two applications, called accounting and enterprise, located in
myproject/accounting and myproject/enterprise. enterprise has a model
which has foreign keys in accounting. so I import it beforehand:
from django.models import accounting
class Company(meta
on windows, MEDIA_URL and MEDIA_ROOT, did not quit help; I haven't
understood why...
all I did then was to put:
in urls something like
r'^m/(?P.*)$', 'media', {'document_root':
'D:\\django\\testapp\\media\\'}),
and in views
from django.views.static import serve
media = serve
and in the base
New JOBS POSTED are as follows :
REQ Software Engineer (JOB Code: SE-01-0106) SSA Global Technologies
REQ Programmer(FRESHER) Compare Infobase Pvt. Ltd
Req C/C++/VB/VC++ professionals Kale Consultants
Req Testing Engineer(JAVA) Salix Resources
HCL Req VC++ MFC Professionals (106 POSTIONS) HCL T
iGL wrote:
> Here're what I've have found:
>
> http://www.dellah.com/orient/2003/01/16/pingback-to-trackback-01-for-python
>
> http://stompstompstomp.com/weblog/entries/76/
>
> http://stompstompstomp.com/weblog/entries/76/
sorry: should be this:
http://stompstompstomp.com/weblog/entries/77/
Here're what I've have found:
http://www.dellah.com/orient/2003/01/16/pingback-to-trackback-01-for-python
http://stompstompstomp.com/weblog/entries/76/
http://stompstompstomp.com/weblog/entries/76/
On 1/3/06, iGL <[EMAIL PROTECTED]> wrote:
> Are there some recommendations/restrictions to consider when choosing a
> track/pingback libs for a django-powered app?
Are there any then?
--
Jeroen Ruigrok van der Werven
Le Roux wrote:
> I'm writing a web service where you get your own
> http://yourname.mydomain.com. Think something like blogger where you
> get http://yourname.blogspot.com. The url configuration only searches
> on the bit of url _after_ the domain name.
>
> I obviously want only one instance of dj
I'm writing a web service where you get your own
http://yourname.mydomain.com. Think something like blogger where you
get http://yourname.blogspot.com. The url configuration only searches
on the bit of url _after_ the domain name.
I obviously want only one instance of django serving up all the
su
2006/1/4, EricHsu <[EMAIL PROTECTED]>:
>
> hi all, I've submitted it as a ticket :)
>
> http://code.djangoproject.com/ticket/1162
>
>
Good! Just let us waiting...
--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit
hi all, I've submitted it as a ticket :)
http://code.djangoproject.com/ticket/1162
2006/1/4, EricHsu <[EMAIL PROTECTED]>:
>
> Guys, I created the range0 (0-index) and range1 (1-index filter
>
> $ svn diff defaultfilters.py
> Index: defaultfilters.py
> ===
> --- defaultfilters.py (revision 1813)
> +++ defaultfilter
Guys, I created the range0 (0-index) and range1 (1-index filter
$ svn diff defaultfilters.py
Index: defaultfilters.py
===
--- defaultfilters.py (revision 1813)
+++ defaultfilters.py (working copy)
@@ -433,6 +433,14 @@
from p
33 matches
Mail list logo