Re: Adding a link to edit_inline

2009-04-23 Thread Alfonso
Solved this myself with the excellent tutorial at http://www.juripakaste.fi/blog/django-admin-inline-link.html. Thought it might be of use to someone else here! A On 22 Apr, 19:48, Alfonso wrote: > I think this is probably a number of questions in one so here it goes: > > I need to add a hyper

Re: dynamic form wizards

2009-04-23 Thread Ayaz Ahmed Khan
On 23-Apr-09, at 6:31 PM, Dennis Schmidt wrote: > Hi there, > > I need to dynamically create complex forms in my application. Since > version 1.0 django has these form wizards, which can manage complex > forms quite well. Now my only problem is, that they apparently have > to be statically mapp

Re: automatic updates for a set of model objects via email

2009-04-23 Thread Timboy
Let me be more specific to my needs: Here is my example AutoSearch model: name = charfield uuid = uuid query = charfield autos = m2m updated = boolean emailed_on_update = boolean emailed_on_new = boolean Here are my needs: * updates to this search send the user an email * the user needs to kno

Re: automatic updates for a set of model objects via email

2009-04-23 Thread Alex Gaynor
On Fri, Apr 24, 2009 at 1:15 AM, Timboy wrote: > > I want my users to be able to be updated for changes to specific > models objects. > > Let's say a user does a search of vehicle listings and the search > returns 3 cars. I want them to be able to be alerted when any of those > three car listings

Re: rude, curt, and impatient, or direct, cut-through-the-B.S. communications

2009-04-23 Thread Phil Mocek
On Fri, Apr 24, 2009 at 10:46:46AM +0800, Russell Keith-Magee wrote: > On Thu, Apr 23, 2009 at 10:19 PM, Phil Mocek > > On Thu, Apr 23, 2009 at 06:58:53AM -0700, joeygartin wrote: > > > Their inner sorrow is projected out in a form of rage and that > > > usually (hopefully) only comes out as rude,

automatic updates for a set of model objects via email

2009-04-23 Thread Timboy
I want my users to be able to be updated for changes to specific models objects. Let's say a user does a search of vehicle listings and the search returns 3 cars. I want them to be able to be alerted when any of those three car listings get updated. What's the best way to accomplish this? TIA --

limit number of many to one relationships for an entity

2009-04-23 Thread Avi
is there a neat way to inform the admin interface that you want to limit hte number of one to many relationships ? (i..e. only allow 3 addresse entires per person) ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D

Re: Multi Page Form With Database Persistence

2009-04-23 Thread Timboy
Well I really want the data to post to the database at the same time as well. Thanks n e way but I'll just re-write the form wizard to do what I want. On Apr 23, 9:51 pm, Timboy wrote: > I basically want to be able to skip to a specific step in the form > wizard process. > > On Apr 20, 5:56 pm

Re: Multi Page Form With Database Persistence

2009-04-23 Thread Timboy
I basically want to be able to skip to a specific step in the form wizard process. On Apr 20, 5:56 pm, Timboy wrote: > I need to create a multiple page form that upon submit the information > is saved to the database so the user can finish it later. > > I want to be able to check the data filled

Re: django forms validation with choice and m2m fields

2009-04-23 Thread Timboy
Thank you very much Alex! On Apr 23, 9:28 pm, Alex Gaynor wrote: > On Fri, Apr 24, 2009 at 12:25 AM, Timboy wrote: > > > Does this data get checked to make sure that it is what was on the > > form? > > > If I have a list of choices 1,2,3 and someone modifies the form to add > > a # 4 and choose

Re: Insensitivity of filtering to stressed chars

2009-04-23 Thread Karen Tracey
On Fri, Apr 24, 2009 at 12:24 AM, space0x42 wrote: > > HI all > > This is puzzling me: > django 1.0 with a mysql database, innodb engine, database created with > "character set utf8 collate utf8_general_ci." > > Filtering by object name is insensitive to stressed chars! > > EntityType.objects.get(

Re: django forms validation with choice and m2m fields

2009-04-23 Thread Alex Gaynor
On Fri, Apr 24, 2009 at 12:25 AM, Timboy wrote: > > Does this data get checked to make sure that it is what was on the > form? > > If I have a list of choices 1,2,3 and someone modifies the form to add > a # 4 and chooses that will django forms catch it or do I need to make > sure on every one of

Insensitivity of filtering to stressed chars

2009-04-23 Thread space0x42
HI all This is puzzling me: django 1.0 with a mysql database, innodb engine, database created with "character set utf8 collate utf8_general_ci." Filtering by object name is insensitive to stressed chars! EntityType.objects.get(name='sven') returns the same object of EntityType.objects.get(name=

django forms validation with choice and m2m fields

2009-04-23 Thread Timboy
Does this data get checked to make sure that it is what was on the form? If I have a list of choices 1,2,3 and someone modifies the form to add a # 4 and chooses that will django forms catch it or do I need to make sure on every one of my fields that the entered value is what was in the list? TI

Prolem dealing with json post data

2009-04-23 Thread Francis
Hi, I'm using dojo (also tried with jquery) to send json data to my django application. But I can't get it working properly. The problem is that my json data is manage as a dict key with an empty string as value. json data : {"Home":{"Id":"1","Name":"home"},"Home2":{"Id":"3","Name":"Home2"}} dj

Re: Enable Image macro on tracwiki markup (djangosnippet 1047)

2009-04-23 Thread Matías Iturburu
Nevermind, I think I'll cut the problem down and use markdown instead of trac's mackup. I've found a way of handling images that seems more sane here http://www.omh.cc/2008/aug/18/django-inserting-and-positioning-images/ Although I find trac's markup easier 2009/4/23 Matías Iturburu > Hi all >

Re: ColdFusion components calling Django-Jython objects

2009-04-23 Thread EhVK9OAlL9oT
The Jython interpreter can be embedded in a ColdFusion page. So I can instantiate Django objects instead of serializing them, right? http://www.jython.org/docs/embedding.html http://www.jython.org/docs/javadoc/org/python/util/PythonInterpreter.html Thanks! Mike --~--~-~--~~

Re: Configuring the Admin of a Child Class

2009-04-23 Thread Heigler
Here the Place is just an class, isn't a "real model" so you can't register it in admin. I've tried simulate your situation and worked very well to me (without "city" field in ModelAdmin). Can you paste the full models.py and admin.py files? Try pasting here: http://pastebin.com/ --~--~-~

Re: rude, curt, and impatient, or direct, cut-through-the-B.S. communications? [was: Webpy vs Django]

2009-04-23 Thread Russell Keith-Magee
On Thu, Apr 23, 2009 at 10:19 PM, Phil Mocek wrote: > > On Thu, Apr 23, 2009 at 06:58:53AM -0700, joeygartin wrote: >> Their inner sorrow is projected out in a form of rage and that usually >> (hopefully) only comes out as rude, curt and inpatient. > > That's a common misperception. > >

Re: how to make the first row in the table (table header) bold

2009-04-23 Thread Nalini
Thanks alan.. On Apr 22, 5:00 pm, zayatzz wrote: > You can remove this if at all and use css based formatting if you want > to. > > but otherwise : > {% ifequal athlete.name coach.name %} >     ... > {% endifequal %} > > Taken from  http://docs.djangoproject.com/en/dev/topics/templates/ > > Alan

Export to excel sheet in djanogo using pagination

2009-04-23 Thread Nalini
Hi, I have many pages to be exported to the excel sheet. I use django and javascript. i use pagination. Can any one help me out ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: ColdFusion components calling Django-Jython objects

2009-04-23 Thread Joshua Partogi
I don't know much about ColdFusion. But if you ever want to call django components you can make a loosely coupled by sending JSON objects from django to your Coldfusion apps. On Apr 24, 9:47 am, EhVK9OAlL9oT wrote: > Hi, > > Can ColdFusion components call Django objects?  Do I need to install >

ColdFusion components calling Django-Jython objects

2009-04-23 Thread EhVK9OAlL9oT
Hi, Can ColdFusion components call Django objects? Do I need to install Django on the ColdFusion server? Or can I use Django + Jython to provide ColdFusion with my Django objects? http://code.google.com/p/django-jython/wiki/WarDeployment Thanks, Mike --~--~-~--~~

Re: Show user page on first login.

2009-04-23 Thread Joshua Partogi
On Apr 24, 4:14 am, tristan wrote: > Hi there, > > I'm build a Django web-app with some pinax components, and would like > to show to take the user to a specific page on their first login, and > afterwards not show them that page again. > Has anyone implemented this, or seen any example code fo

Re: django on tomcat

2009-04-23 Thread Joshua Partogi
On Apr 24, 8:33 am, Brendan Miller wrote: > What servers does django support? Is there any way to get it with > cpython to run on top of tomcat? Aren't you suppose to use Jython for that? --~--~-~--~~~---~--~~ You received this message because you are subscribed t

Re: Configuring the Admin of a Child Class

2009-04-23 Thread vitramarweb
On Apr 24, 12:07 am, Heigler wrote: > Hello, > I think the problem isn't currency in your ModelAdmin, i think the > problem is the field "city", where is it in your CountryModel? Thanks for the answer. I already correct that, and also in the import (it was a bad copy- paste) and still getting

django on tomcat

2009-04-23 Thread Brendan Miller
What servers does django support? Is there any way to get it with cpython to run on top of tomcat? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-user

Re: graph tools

2009-04-23 Thread R. Gorman
There's also Google visualizations (http://code.google.com/apis/ visualization/). They have a python library that can easily interact with Django (http://code.google.com/apis/visualization/documentation/ dev/gviz_api_lib.html). --~--~-~--~~~---~--~~ You received thi

Re: dynamic form wizards

2009-04-23 Thread Dougal Matthews
First result in a google search for "django dynamic forms" gives you this; http://www.b-list.org/weblog/2008/nov/09/dynamic-forms/ Just so happens I read it today and found it useful. You can create your form fields on the fly in the __init__, I've got a form thats completely generated from my mod

Re: Configuring the Admin of a Child Class

2009-04-23 Thread Heigler
Hello, I think the problem isn't currency in your ModelAdmin, i think the problem is the field "city", where is it in your CountryModel? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Configuring the Admin of a Child Class

2009-04-23 Thread vitramarweb
Hi, I am still pretty new here and a bit confused. I have the next models: Place is an abstract class class Place(models.Model): place = models.CharField(_('place'), max_length=128) currency = models.CharField(_('currency'), max_length=128) #... #... and many other generic data

Configuring the Admin of a child class

2009-04-23 Thread Felix de Vitramar
Hi, I am still pretty new here and a bit confused. I have the next models: Place is an abstract class class Place(models.Model): place = models.CharField(_('place'), max_length=128) currency = models.CharField(_('currency'), max_length=128) #... #... and many other generic data

Re: Is there a bug in queryset distinct() filtration in Postgre SQL?

2009-04-23 Thread Tyler Erickson
Following up on my last post... After using distinct(), the count() is what I expect, but when I iterate through the queryset results there are more results that I expect, and the count of the queryset changes (see example below). -- def get_unique_vehicles

Re: updating dependent page from an iframe

2009-04-23 Thread snorkel
Sadly can't think of another way of organizing page with the need of functionality unless I use an iframe but I'm trying to do a reload with Javascript - without success so far thanks On Apr 23, 9:25 pm, Florian Strzelecki wrote: > I think this is a basic html's problem, and, I'll suppose that

Re: updating dependent page from an iframe

2009-04-23 Thread Florian Strzelecki
I think this is a basic html's problem, and, I'll suppose that you absolutly need an iframe on your site. So, when you make something in an iframe, the another have to be reloaded. With Javascript, or another way... And if you don't want to reload the entire iframe, use Ajax technologie... Hm...

Re: Is there a bug in queryset distinct() filtration in Postgre SQL?

2009-04-23 Thread Tyler Erickson
I seem to be encountering the same or similar issue. The distinct() method seems to have no affect on my queryset. I am using PostgreSQL, and the django.contrib.gis.db models object. ipdb> p TruckLog.objects.values('vehicleid') [{'vehicleid': 80533}, {'vehicleid': 80480}, {'vehicleid': 80437}, {

Re: Opera File Upload Issue

2009-04-23 Thread pcoles
Szymon discovered the cause - which was a bug in modwsgi 2.3 that is now fixed in modwsgi 2.4 http://code.google.com/p/modwsgi/issues/detail?id=121 (thanks for the fix Graham!) On Apr 23, 2:35 pm, Szymon wrote: > Hello, > > I've faced same problem today. Have you find solution? Or anyone know

Re: Writing csv files to server

2009-04-23 Thread Florian Strzelecki
Hm... in my opinion this isn't a Django problem, but a conception problem. I think you need a "state" on the invoices : when does it have been paid ? If you know when, so you can filter on the date of paiement. Exemple : Paid (id-1, sales-1, date_paid-2009-03-02, value-$150) Paid (id-1, sales-1,

Enable Image macro on tracwiki markup (djangosnippet 1047)

2009-04-23 Thread Matías Iturburu
Hi all I have been using this snippet http://www.djangosnippets.org/snippets/1047/to enable the trac's excelent wiki markup to my app, so far so well, the snippet works flawlessy rendering _text_ , however I would like to use the [Image()] macro as it enables me to do some cool stuff with images a

Writing csv files to server

2009-04-23 Thread Alfonso
I need to generate a statement at the end of the month that grabs all the invoices for that month and lets the client knows who hasn't paid on time. Problem is the usual setup I have of creating a view/template that simply shows unpaid invoices (within a statement) doesn't stay persistent, i.e. wh

Re: Only show field in admin for superuser

2009-04-23 Thread phoebebright
That just what I needed! Many thanks. Here is the code that worked for me: class WhoAdmin(admin.ModelAdmin): fields = ('name','owner') def get_fieldsets(self, request, obj=None): fs = super(WhoAdmin, self).get_fieldsets(request, obj) # only allo

Re: Update only one field on save

2009-04-23 Thread Alex Gaynor
On Thu, Apr 23, 2009 at 2:50 PM, Michel Thadeu Sabchuk wrote: > > Hi guys, > > I'm loooking for a way to update only one field when changing a model. > I started from: > > object = get_object_or_404(SomeModel) > object.hits += 1 > object.save() > > I using django1.1. I saw there is a ticket talkin

Update only one field on save

2009-04-23 Thread Michel Thadeu Sabchuk
Hi guys, I'm loooking for a way to update only one field when changing a model. I started from: object = get_object_or_404(SomeModel) object.hits += 1 object.save() I using django1.1. I saw there is a ticket talking about this: http://code.djangoproject.com/ticket/4102 And a snippet too: htt

Re: Opera File Upload Issue

2009-04-23 Thread Szymon
Hello, I've faced same problem today. Have you find solution? Or anyone know what can be wrong? Best regards, Szymon On 30 Mar, 18:37, Peter wrote: > I'm having an opera file upload issue, which may not be django's > fault, but I'm curious if anyone has seen it (and has a solution)... > > When

Re: Problem in tutorial

2009-04-23 Thread Karen Tracey
On Thu, Apr 23, 2009 at 11:48 AM, Mike Ramirez wrote: > On Thursday 23 April 2009 07:43:14 am Karen Tracey wrote: > > which was closed as a dup of another bug which was fixed pretty recently. > > So you can either try with a recent SVN checkout, or (what I do) just use > > the mysql program direc

updating dependent page from an iframe

2009-04-23 Thread snorkel
Hi, I have a page with an iframe which contains operations on model data such as adding /deleting etc and the rest of the page which has a clickable list of all the items. However when you add or delete an item via the ifame the list does not update. Should I be using reload or is there anothe

Show user page on first login.

2009-04-23 Thread tristan
Hi there, I'm build a Django web-app with some pinax components, and would like to show to take the user to a specific page on their first login, and afterwards not show them that page again. Has anyone implemented this, or seen any example code for it? Thanks, Tristan --~--~-~--~~-

Re: doctest testing with templatefilters

2009-04-23 Thread Jari Pennanen
Found out that putting them to tests.py *does* run them, but since when all is "ok" it won't print anything... But nevertheless I wouldn't like to put them root, and inside "if __name__ == '__main__':", manage.py test myapp wont find them. On Apr 23, 8:11 pm, Jari Pennanen wrote: > Hi! > > I'm j

Re: doctest testing with templatefilters

2009-04-23 Thread Jari Pennanen
Hi! I'm just wondering the same thing, not exact same, but this: How do I run doctests when doing "./manage.py test myapp", where should I define doctest.testmod(...) lines? In root of tests.py it doesn't work. On Apr 12, 7:51 pm, Julian wrote: > hello, > > I am testing some of my filters with

Re: Problem in tutorial

2009-04-23 Thread Mike Ramirez
On Thursday 23 April 2009 07:43:14 am Karen Tracey wrote: > which was closed as a dup of another bug which was fixed pretty recently. > So you can either try with a recent SVN checkout, or (what I do) just use > the mysql program directly rather than going through manage.py dbshell for > stuff like

Re: Problem in tutorial

2009-04-23 Thread Karen Tracey
On Thu, Apr 23, 2009 at 3:54 AM, 83nini <83n...@gmail.com> wrote: > > Hi guys, > > I'm working on django tutorial that is in "www.djangobook.com", I'm in > chapter6 where i'm in the process of creating an admin Web site. > The site is created and it works just perfectly, the thing is I'm > trying

Re: Importing from many apps causing import conflicts?

2009-04-23 Thread Karen Tracey
[Replying to your first message rather than your last because this is the one with a traceback showing why this problem is happening. See comments inline in the traceback.] On Wed, Apr 22, 2009 at 9:33 AM, robin wrote: > > I have an unexplainable problem involving importing from 3 apps and > on

rude, curt, and impatient, or direct, cut-through-the-B.S. communications? [was: Webpy vs Django]

2009-04-23 Thread Phil Mocek
On Thu, Apr 23, 2009 at 06:58:53AM -0700, joeygartin wrote: > Their inner sorrow is projected out in a form of rage and that usually > (hopefully) only comes out as rude, curt and inpatient. That's a common misperception. >> ## Deali

Re: New site: www.portaltotheuniverse.org

2009-04-23 Thread larsholm
Not at all :-) For the site we use: feedparser (nearly obviously for the feed parsing - it's unbeatable) beautifulsoup django-command-extensions django-batchadmin (which I'm very happy to see makes it into Django 1.1) django-mptt (for our menu system) djangodblog PIL threadpool SSLMiddleware For

Re: Webpy vs Django

2009-04-23 Thread joeygartin
I almost made a comment the other day on this topic in regards to how to "Properly reply to a question" and other etiquette. Several years ago I entered the tech and IT industry and quickly noticed the incredible lack of good social skills by my peers. It went beyond not knowing how to dress (be

Re: New site: www.portaltotheuniverse.org

2009-04-23 Thread Zain Memon
Cool! Mind sharing the names of any open source django apps you used? On Thu, Apr 23, 2009 at 6:09 AM, larsholm wrote: > > Dear all, > > Allow me to advertise for our new Django based site: > http://www.portaltotheuniverse.org > > Keeping up-to-date with cutting-edge astronomy and space science

dynamic form wizards

2009-04-23 Thread Dennis Schmidt
Hi there, I need to dynamically create complex forms in my application. Since version 1.0 django has these form wizards, which can manage complex forms quite well. Now my only problem is, that they apparently have to be statically mapped by the urls.py. But what I need is a different set of forms

Re: New site: www.portaltotheuniverse.org

2009-04-23 Thread 83nini
nice work, you gotta be proud of it :) On 23 Apr, 15:09, larsholm wrote: > Dear all, > > Allow me to advertise for our new Django based > site:http://www.portaltotheuniverse.org > > Keeping up-to-date with cutting-edge astronomy and space science > breakthroughs has just become that much easie

New site: www.portaltotheuniverse.org

2009-04-23 Thread larsholm
Dear all, Allow me to advertise for our new Django based site: http://www.portaltotheuniverse.org Keeping up-to-date with cutting-edge astronomy and space science breakthroughs has just become that much easier, thanks to the Portal To The Universe, the latest Cornerstone project of the Internat

Re: Table or view does not exist - Oracle

2009-04-23 Thread jeffhg58
I am using pretty much the same setup you have except I use cx_oracle 5.0.1. Have you narrowed down what tables are missing? - Original Message - From: "Petry" To: "Django users" Sent: Thursday, April 23, 2009 6:57:45 AM GMT -06:00 US/Canada Central Subject: Re: Table or view do

Re: Table or view does not exist - Oracle

2009-04-23 Thread Petry
I'm using Python 2.6.2, cx_oracle 4.4.1 and django 1.1 beta 1 SVN-10620 anyone know what happend?? On 22 abr, 17:48, Petry wrote: > I have the same problem. > > I ran the command "python manage.py syncdb" and the tables were > created. > > In the shell I run: > from django.contrib.auth.models i

Re: Hierarchy menu system

2009-04-23 Thread Zain Memon
It sounds like you're trying to build a CMS app; check out django-cms if you haven't already. http://django-cms.org/ On Wed, Apr 22, 2009 at 9:50 AM, tdelam wrote: > > What's the best way to build a hierarchy menu system? e.g: Page items > can have sub-pages and sub-pages can have sub-sub-pages

Re: graph tools

2009-04-23 Thread Zain Memon
You might find it easier to go with a Javascript library to render the graphs instead; for example, the excellent flot plugin for jQuery. http://code.google.com/p/flot/ On Thu, Apr 23, 2009 at 12:10 AM, Lars Stavholm wrote: > > Hi All, > > looking to produce graphs within a django application, >

Re: Only show field in admin for superuser

2009-04-23 Thread Zain Memon
In that case, try overriding ModelAdmin.get_fieldsets(); add the owner field to self.fieldset if request.user.is_superuser, and then call super.get_fieldsets(). For reference, you can find get_fieldsets() (and other beautiful things you can override) in django/contrib/admin/options.py. On Thu, Apr

Re: Only show field in admin for superuser

2009-04-23 Thread phoebebright
Zain, Thanks for responding. I would really prefer not to show the field at all - I don't want ordinary users being able to see a list of all the users on the system! Phoebe On Apr 23, 9:42 am, Zain Memon wrote: > You can override the ModelAdmin.save_model() method to check if the current > us

[Querysets] Trying to determine status of an order based on the properties of its order items

2009-04-23 Thread Andrew Ingram
Hi All, I'm looking for an efficient way to solve the following problem, I'm happy to use custom sql if necessary. Basically I have an Order model and an OrderItem model (ecommerce site), structured as follows: Order(models.Model): ... some fields ... OrderItem(models.Model): ... som

Re: How to get request.user inside a model method?

2009-04-23 Thread Bastien
Karen, thanks, I think I will follow the way of the custom template tag. Bastien On Apr 22, 4:32 pm, Karen Tracey wrote: > On Wed, Apr 22, 2009 at 5:13 AM, Bastien wrote: > > > The last thread about that is quite old, I was wondering if there is > > any new way to do that? > > Likely nothing h

Re: Only show field in admin for superuser

2009-04-23 Thread Zain Memon
You can override the ModelAdmin.save_model() method to check if the current user has permission to change the owner. Take a look at http://www.b-list.org/weblog/2008/dec/24/admin/ to see an example. On Thu, Apr 23, 2009 at 1:37 AM, phoebebright wrote: > > I have a model with an owner field that I

Re: Problem in tutorial

2009-04-23 Thread Zain Memon
Your SQL is wrong. Look up the correct syntax for changing a column in the MySQL docs. On Thu, Apr 23, 2009 at 12:54 AM, 83nini <83n...@gmail.com> wrote: > > Hi guys, > > I'm working on django tutorial that is in "www.djangobook.com", I'm in > chapter6 where i'm in the process of creating an admi

Only show field in admin for superuser

2009-04-23 Thread phoebebright
I have a model with an owner field that I only want a superuser to be able to change. I can't change the list of fields in form in admin.py because there is not request.user to test at that time. If I were using custom templates I could put it in the template, but would rather stick to the stand

Problem in tutorial

2009-04-23 Thread 83nini
Hi guys, I'm working on django tutorial that is in "www.djangobook.com", I'm in chapter6 where i'm in the process of creating an admin Web site. The site is created and it works just perfectly, the thing is I'm trying to make some date and numeric fields optional, so I modified the models.py fold

Re: auth.contrib silently catching TypeError. Bug?

2009-04-23 Thread Tamas Szabo
Hi, I understand the need for supporting multiple authentication systems, but I don't think that the implementation is the best that it can be done. IMHO, silencing exceptions is something you should be very careful with even if you control all the code that you are doing it for. Other implemen

graph tools

2009-04-23 Thread Lars Stavholm
Hi All, looking to produce graphs within a django application, preferably within the admin site. django-graphs might be a contender, but it seems to be not fully completed yet. Anyone using it? Other django graph app's? Any advice appreciated /Lars Stavholm --~--~-~--~~---