POSTING IN GOOGLE PLUS BUSINESS PAGE

2016-03-23 Thread Karthik Reddy
Hi Experts, I am trying to POST on google plus wall from my django application.I am able to get the google share pop up .But Once I click the share Button its not posting on my page. Here is what I did. Settings.py file: GOOGLE_OAUTH2_CLIENT_ID = "X-YY.apps

collectstatic to bucket folder

2016-03-23 Thread Naveen Yadav
I'm serving static files from S3 using collectstatic command using djanog-storages, Right now it stores all the static content inside the S3 bucket, /s3-bucket/ Instead i want to store these files inside static folder under my bucket. /s3-bucket/static/ -- You received this message because you

Using django admin like feature for multiple users

2016-03-23 Thread Chinmoy Panda
I have developed a data sharing app in django where any user can share their data with all other users. Now I want the app to work in an organisational level i.e., the organisation signs with me and creates its users, who can share data within the users of the organisation(Multi tenancy). Is th

Re: Architecture of multiple Sites

2016-03-23 Thread Sai Kiran
You can try something like below: class CustomSiteManager(CurrentSiteManager): def get_queryset(self): current_site = Site.objects.get_current() return super(CustomSiteManager, self).get_queryset().filter( **{self._get_field_name() + '__id': current_site.id}) We

Right displaying Pie chart in Django with help django-chartjs

2016-03-23 Thread Seti Volkylany
Details of question here http://stackoverflow.com/questions/36179624/right-displaying-pie-chart-in-django-with-help-django-chartjs -- 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 i

Re: Django Forms vs Angularjs

2016-03-23 Thread Gorkem Tolan
Fabio, I appreciate for your contribution. I understand the point that create a separate form with only readonly fields. However, I have a form has a mix of fields (readonly and editable) based on the user permission, not only one type of field. Also, When readonly field is defined by disabled=

Re: HStoreField - Field value is an object usually, but a string when in shell

2016-03-23 Thread Tim Graham
Are you using the same settings file in both cases? I think this might happen if you don't have django.contrib.postgres in INSTALLED_APPS which would mean register_hstore_handler() isn't called. On Tuesday, March 22, 2016 at 1:15:28 PM UTC-4, Andrew Grossman wrote: > > I'm working with a model t

Re: collectstatic to bucket folder

2016-03-23 Thread Bruno A.
I believe the S3BotoStorage class is using the setting AWS_LOCATION to decide where to store it. Adding this to your settings.py should do the job: AWS_LOCATION = os.environ('AWS_LOCATION', 'static') On Wednesday, 23 March 2016 10:46:39 UTC, Naveen Yadav wrote: > > I'm serving static files from

Re: collectstatic to bucket folder

2016-03-23 Thread Bruno A.
I believe the S3BotoStorage class is using the setting AWS_LOCATION to decide where to store it. Adding this to your settings.py should do the job: AWS_LOCATION = os.environ.get('AWS_LOCATION', 'static') On Wednesday, 23 March 2016 10:46:39 UTC, Naveen Yadav wrote: > > I'm serving static files f

Re: Architecture of multiple Sites

2016-03-23 Thread dhall
We ran into this problem and decided to extend Django's CurrentSiteMiddleware to allow for the specification of a default site to use in the case when you cannot determine the current site from the host of the incoming request. Description of problem: https://groups.google.com/forum/#!topic/ed

DjangoCon US 2016

2016-03-23 Thread Andrew Pinkham
We are pleased to announce that DjangoCon US will be hosted by the Wharton School at the University of Pennsylvania in Philadelphia from July 17-22! The call for proposals is open! We want to hear about your experience with and ar

Approaches for sharing development fixtures across teams

2016-03-23 Thread pjotr
Hi, We have been struggling with sharing development fixtures between each other. Keeping media files, and db in sync has been problematic for us. We started by just storing zip files containing media files directory, and a pg_dump of the database. Fine. But then we started to swap branches, db

Re: DjangoCon US 2016

2016-03-23 Thread Alex Heyden
This is an unexpected break from the old "everyone pays" policy. Has there been trouble getting proposals in the past? On Wed, Mar 23, 2016 at 10:00 AM, Andrew Pinkham wrote: > We are pleased to announce that DjangoCon US will be hosted by the Wharton > School at the University of Pennsylvania i

Re: DjangoCon US 2016

2016-03-23 Thread James Bennett
>From reading the CfP page I don't see much of a change; as far as I know with DjangoCon (and PyCon) it's always been the case that, as long as there was a financial aid program, speakers could make use of it, and I believe one or the other or both have prioritized speakers to ensure that getting t

Mobile eCommerce with Django

2016-03-23 Thread Jordan Koncz
I'm working on a Django back-end that provides an API (using Django REST Framework) for a mobile app. I'm looking to add eCommerce functionality to this back-end, with all of this functionality being used by the mobile app via the API. The eCommerce functionality needed is the usual standard st

Re: DjangoCon US 2016

2016-03-23 Thread Alex Heyden
The financial aid is nothing new, but "everyone pays" traditionally meant that everyone, from speakers to organizers to volunteers, paid for a ticket. Free tickets for speakers is unusual outside of paid keynote speakers. On Wed, Mar 23, 2016 at 6:29 PM, James Bennett wrote: > From reading the C