How do I replace admin views?

2006-12-26 Thread Jim Fritchman
am really hoping that there is a way to do this and I hope that someone can shed some light on this for me and push me down the right path. Thank you very much for your help. Regards, Jim Fritchman --~--~-~--~~~---~--~~ You received this message because you are sub

Django Ticket #1476: New field option: edit_external=True

2006-12-23 Thread Jim Fritchman
am really hoping that there is a way to do this and I hope that someone can shed some light on this for me and push me down the right path. Thank you very much for your help. Regards, Jim Fritchman --~--~-~--~~~---~--~~ You received this message because you are sub

Looking to hire

2006-12-08 Thread Jim Fritchman
Hi, all. Wagdogs is looking to hire one or more developers to work on Django. We are a new startup located in the suburbs of Philadelphia, Pennsylvania and we have so much interest in our company that we need to get our product to market as soon as possible. We are looking for individuals that h

Re: Need help with extending admin templates

2006-12-02 Thread Jim Fritchman
I made the suggested change by adding the html extension to the extends but no luck. Does anyone else possible see what the problem is? Is there a way to step into this code as it executes? Thanks, Jim --~--~-~--~~~---~--~~ You received this message because yo

Need help with extending admin templates

2006-12-01 Thread Jim Fritchman
n the file /templates/admin/wagdogs/person/change_form.html My problem is that when I add or edit a person I do not see anything. I would greatly appreciate it if someone could help me figure out why this template is not being used. Thanks, Jim

Re: Help with admin views

2006-12-01 Thread Jim Fritchman
Than you for your responses. --~--~-~--~~~---~--~~ 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, send email to [E

Help with admin views

2006-11-29 Thread Jim Fritchman
I am hoping some of you can give me a little start as to where I can read how to alter some of the admin pages. I have a a Person class in my model and I want to change both the view of people plus I want to change the form page where people are added and deleted. Any links or examples or tutori

A little help

2006-11-28 Thread Jim Fritchman
I am hoping some of you can give me a little start as to where I can read how to alter some of the admin pages. I have a a Person class in my model and I want to change both the view of people plus I want to change the form page where people are added and deleted. Any links or examples or tutori

More questions on models

2006-11-27 Thread Jim Fritchman
The following is SQLObject code and I would like to know how I would do the same in Django? class Order(SQLObject): items = MultipleJoin('OrderItem', joinColumn='order_id') class sqlmeta: table = 'orders' class OrderItem(SQLObject): quantity = IntCol(notNone=True) price