Re: How to remove Group field from Email Form

2014-04-18 Thread nobody
Thanks Serge, please see following embedded comments. On Friday, April 18, 2014 11:27:01 PM UTC+10, Sergiy Khohlov wrote: > > add exlude= ['Group'] to the form.py > Many thanks, > > Hmm, I tried following at my forms.py: from andsome.forms import EmailForm class EmailForm(EmailForm): excl

How to reverse both Django South migrations and source code?...

2014-04-18 Thread Fred Stluka
Django Users, I'm having a problem reversing a Django South migration while also reverting my source code to an an older version. Any help? Details: My algorithm for doing a release is essentially: 1. Update the source files 2. % python manage.py migrate --all This works great when moving f

Re: what's the best admin skin (free)

2014-04-18 Thread Jason
Django-suit On Wednesday, 16 April 2014 21:04:11 UTC-4, Bobby Roberts wrote: > > hey group. I've been out of the loop for a few years now. What is the > best skin for admin? Is Grapelli still good? > -- You received this message because you are subscribed to the Google Groups "Django user

Re: Questions about setting up my first app in django tutorial

2014-04-18 Thread Jason
from django.contrib import admin from polls.models import Poll class PollAdmin(admin.ModelAdmin): pass admin.site.register(Poll, PollAdmin) On Thursday, 17 April 2014 00:03:03 UTC-4, Xiaofeng Feng wrote: > > I am now trying to set up my first app using django tutorial. However, I > was stu

Re: Upgrading from 1.4.3 to 1.4.10

2014-04-18 Thread Phang Mulianto
Hi, i have documenting my journey uprading from django-1.4 to django-1.5 , which i only found some change in the url usage. here are the link of my blog. http://bit.ly/RuPMbr Thanks, Mulianto On Thu, Apr 17, 2014 at 11:46 AM, wrote: > Thanks those release notes were very helpful. > > > > On

Re: How to create an admin editable list?

2014-04-18 Thread m1chael
list_editable in the admin class On Fri, Apr 18, 2014 at 2:41 AM, wrote: > Any suggestion on how to create an admin editable list? either using django > or python? Thank you for your time. Regards, > Rads > > -- > You received this message because you are subscribed to the Google Groups > "Djang

Re: How to remove Group field from Email Form

2014-04-18 Thread Sergiy Khohlov
add exlude= ['Group'] to the form.py Many thanks, Serge +380 636150445 skype: skhohlov On Fri, Apr 18, 2014 at 4:21 PM, nobody wrote: > Hi, > > In an email form template file, the following tag displays tree input > fields, Subject, Body and Group, but I only need Subject and Body field, not

How to remove Group field from Email Form

2014-04-18 Thread nobody
Hi, In an email form template file, the following tag displays tree input fields, Subject, Body and Group, but I only need Subject and Body field, not the Group, how can I remove the Group field? {% form_as_div form %} Thank you. -- You received this message because you are subscribed to the

Is there a "virtual meeting" app/framework?

2014-04-18 Thread richard.prosser
Anything like http://openmeetings.apache.org/? It doesn't have to be based on Django but I definitely prefer Python to Java! Thanks ... Richard Prosser -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

How to use Database Views in Django Rest Framework

2014-04-18 Thread Shoaib Ijaz
I am using Django Rest Framework for serialize data. I came across a scenario where I have to use Database Views as Model. *My Model* class A(models.Model): name = models.CharField(max_length=240, blank=True) value = models.CharField(max_length=240, blank=True) class Meta: