Re: Best Django apps/extensions

2014-06-28 Thread Alexandr Shurigin
http://phpdude.github.io/django-macros-url/ Macros url for simplifying routing :) On Friday, June 27, 2014 7:22:33 PM UTC+7, Greg Niewisiewicz wrote: > > Hi, > > I'm working on a short guide about setting up a new Django project. I'd > like to ask you for apps that you think are indispensable

Right way add dynamically fields to model and migrations

2014-06-28 Thread Alexandr Shurigin
Hi all! Have little problem. I have Custom Field like abstract RichTextEditor which can parse entered text to html some ways. For performance optimization this fields caches parsed data in separate field of model which creates dynamically. Take a look into code. def

admin ViewDoesNotExistError

2014-06-28 Thread Martin Spasov
Hello guys, I am following the Tango with Django tutorial and cant access my admin site. For the past hour and a half I was trying to figure out why i get the following

Re: crm app

2014-06-28 Thread Kelvin Wong
I've not used Django-CRM. I've used Salesforce in the past, but it is even more overkill than SugarCRM. It is incredibly flexible though. It depends on what your client's requirements are. Keep in mind what they are going to do for on-going support (backup, etc). Non-tech users always need

Full text search available on PostgreSQL?

2014-06-28 Thread Bastian Kuberek
Hi, Just saw that django.contrib.admin.ModelAdmin.search_fields full text search only support MySQL. Are there plans on any progress towards getting this functionality on PostgreSQL?

Update user and user profile same form

2014-06-28 Thread Henrique Oliveira
Hi Guys, I have this model: class Member(models.Model): user = models.OneToOneField(User, primary_key=True) date_of_birth = models.DateField('Date of Birth') class Meta: db_table = 'member' def member_email(self): return self.user.email def

Re: Returning submitted formset data to the template for further editing

2014-06-28 Thread Andrew Choi
Daniele, It doesn't seem like there's an easier way to do what you're proposing. However, what's the form data manipulation that you need to do for some of these forms? Is there a way to separate that from the form set submission? Andrew On Saturday, June 28, 2014 12:26:34 AM UTC+9, Daniele

Re: crm app

2014-06-28 Thread Andreas Schosser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mike > Do you know if Django-CRM is suitable for an end user? I have set up several projects with django-cms. The backend is easy to use and you can integrate your own apps with no great effort. Andreas - -- Kurs 10 / IT-Consulting Andreas

models

2014-06-28 Thread ngangsia akumbo
please what can go within these models page, events, news, offers, room types, services -- 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

Re: crm app

2014-06-28 Thread Phang Mulianto
have a look of openerp which have crm on the package.. it has cloud offer also, and is still free for a few user. On Sat, Jun 28, 2014 at 1:42 PM, Mike Dewhirst wrote: > Thanks Kelvin. It looks good at first glance. > > Do you know if Django-CRM is suitable for an end