Re: How to show list only in admin?

2013-03-10 Thread jrief
in your admin class, add class MyModelAdmin(ModelAdmin): def has_add_permission(self, request): return False def has_change_permission(self, request): return False etc. -- You received this message because you are subscribed to the Google Groups "Django users

Re: Django Shopping Cart

2013-03-10 Thread jrief
Have a look at https://www.django-cms.org/en/e-commerce/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to th

MultipleFileField

2013-03-10 Thread Ariel Calzada
Hi! I have a model Person with the fields = name, lastname, papers ( many2many field of the model Paper ) and a model Paper with fields = title, file I want in a ModelForm of Person let user insert many papers. I've been trying with a django app that implements a new MultiFileField without l

Re: MultipleFileField

2013-03-10 Thread Shawn Milochik
https://docs.djangoproject.com/en/1.5/topics/forms/modelforms/#inline-formsets -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegro

Re: Django Shopping Cart

2013-03-10 Thread Sandeep kaur
On Thu, Feb 28, 2013 at 2:32 AM, vijay shanker wrote: > hey, i want to write a shopping cart app, please provide some inputs, useful > information, suggestions etc for doing it right . Have a look at this too. https://github.com/bmentges/django-cart -- Sandeep Kaur E-Mail: mkaurkha...@gmail.com

Re: MultipleFileField

2013-03-10 Thread Ariel Calzada
Inline formset only work with Foreign but not with Many2Many 2013/3/10 Shawn Milochik > > https://docs.djangoproject.com/en/1.5/topics/forms/modelforms/#inline-formsets > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe fro

Restful User Authentication for Ember/Backbone client with Tastypie

2013-03-10 Thread Pratik Mandrekar
Hello, I'm trying to figure out what would be the best way to integrate django with ember.js/backbone from the user authentication point of view. I'm using Tastypie for creating RESTful resources. I have no problem creating APIs once a user has been authenticated using the Session based authen

Re: Survey : Theme for Django admin interface

2013-03-10 Thread Emiliano Dalla Verde Marcozzi
2013/3/10 Venkatraman S > Hi, > > Was wondering if there are *paid* takers for themes for the django-admin > interface. I know there are a few that exist already but am not quite happy > with them. > > I can definitely spend a few days/weeks and develop some nice looking > ones, but wanted to che

Re: Survey : Theme for Django admin interface

2013-03-10 Thread Venkatraman S
On Mon, Mar 11, 2013 at 3:49 AM, Emiliano Dalla Verde Marcozzi < e...@fedoraproject.org> wrote: > > I was looking for this, but didnt find anything. i think it can have a > great market, something like > this web: > https://wrapbootstrap.com/theme/unicorn-admin-template-WB0F35928 > For me, a reaso

How to display large data by scrolling html page using python and django?

2013-03-10 Thread Avnesh Shakya
hi, i have stored data in database,but it has large data,so it's showing only 20-25 rows of data on html page. I want to show all data using scrolling. how is it possible? Please help me Thanks -- You received this message because you are subscribed to the Google Groups "Django users" g