Re: same card can belong to multiple users but only in different time periods

2018-10-09 Thread Devender Kumar
; >> Consider a project where users can have many cards (or anything else, >> card is just an example), and the same card can belong to multiple users *but >> only in different time periods*. So if a card is assigned to user from >> 1.09.2014 to 1.10.2014 (dd/mm/), then

Re: same card can belong to multiple users but only in different time periods

2018-10-08 Thread Derek
3:10:04 UTC+2, Shareef 617 wrote: > > Consider a project where users can have many cards (or anything else, card > is just an example), and the same card can belong to multiple users *but > only in different time periods*. So if a card is assigned to user from > 1.09.2014 to 1.10

Re: same card can belong to multiple users but only in different time periods

2018-10-08 Thread Nelson Varela
Django has DateRangeField but that is only available if you are using postgres On Monday, October 8, 2018 at 1:10:04 PM UTC+2, Shareef 617 wrote: > > Consider a project where users can have many cards (or anything else, card > is just an example), and the same card can belong to multi

Re: same card can belong to multiple users but only in different time periods

2018-10-08 Thread Jason
What is the question you have? -- 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 this group, send email to dj

same card can belong to multiple users but only in different time periods

2018-10-08 Thread Shareef 617
Consider a project where users can have many cards (or anything else, card is just an example), and the same card can belong to multiple users *but only in different time periods*. So if a card is assigned to user from 1.09.2014 to 1.10.2014 (dd/mm/), then the same card can be assigned to

Re: WYSIWYG editor, file browser and multiple users

2017-07-28 Thread Avery Uslaner
lo, > > I’m trying to install WYSIWYG editor and file browser which allows user > to upload images. Then these images can be inserted into users article. > I also have multiple users registered on my site and I need > separate/hide one users’ images from another user. > > U

WYSIWYG editor, file browser and multiple users

2017-07-28 Thread Karol Bujaček
Hello, I’m trying to install WYSIWYG editor and file browser which allows user to upload images. Then these images can be inserted into users article. I also have multiple users registered on my site and I need separate/hide one users’ images from another user. Using django-tinymce4-lite [1

Re: Multiple Users

2017-03-06 Thread Lekan Wahab
##This is one approach. You can have a single user profile and a number of other users tied to the user profile via ForeignKey. class UserProfile(models.Model): user = models.ForeignKey(User) #define general fields class Freelancer(models.Model): profile = models.ForeignKey(UserProfil

Multiple Users

2017-03-06 Thread Focus Ifeanyi
I am new to Django and trying to create an App with two User Types (Freelancers and Customers). I understand how to create a User profile Class and it works well for me: class UserProfile(models.Model): user = models.OneToOneField(User) description = models.CharField(max_length=100, de

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: Can't log in with multiple users

2016-02-13 Thread Jason
blem with only > being able to sign into the app with one user account at a time. I need to > be able to allow "multiple" users to log in, including the admin account, > at the same time. Thank you for any assistance you can offer!!! > > -- You received this message b

Can't log in with multiple users

2016-02-13 Thread Jason
Please help! I have a Django app that uses django-redux for registration/login/logout tasks, and I am now having a problem with only being able to sign into the app with one user account at a time. I need to be able to allow "multiple" users to log in, including the admin account, a

Re: Multiple Users Logged into a page at the same time

2013-05-31 Thread C. Kirby
s) > > You would also want an ajax call that triggers when the browser window is > closed, running a view that does: > try: > OnPage.objects.get(user = request.user).delete() > else: > pass > > On Friday, May 31, 2013 8:40:33 AM UTC-5, Alan wrote:

Re: Multiple Users Logged into a page at the same time

2013-05-31 Thread C. Kirby
gt; Hi, > > For a site that I am building, I want multiple users to be able to log in > to a page at the same time. Something with the experience being very > similar to what we have in Google Docs where I can see the users who are > currently logged into and are active on the page

Multiple Users Logged into a page at the same time

2013-05-31 Thread Alan
Hi, For a site that I am building, I want multiple users to be able to log in to a page at the same time. Something with the experience being very similar to what we have in Google Docs where I can see the users who are currently logged into and are active on the page. I'd want to be ab

admin hangs deleting multiple users

2012-06-08 Thread Larry Martell
In my admin site, if I select multiple users, then select 'Delete selected users' and click 'Go', it hangs. I can delete one user at a time with no issues. There is nothing logged anywhere - not in any apache log nor in the mysql log. Where can I look for more info to debug th

Re: Best practices to create multiple users profiles using Auth

2011-09-28 Thread Santiago Basulto
Thank you Ryan. I'll read it. Seems interesting. On Sep 27, 10:30 am, ryan west wrote: > I actually just wrote a blog post about why I think extending > contrib.auth.models.User is a better solution to using a OneToOneField > (or a ForeignKey), you can find it here: > > http://ryanwest.info/blog/

Re: Best practices to create multiple users profiles using Auth

2011-09-27 Thread ryan west
I actually just wrote a blog post about why I think extending contrib.auth.models.User is a better solution to using a OneToOneField (or a ForeignKey), you can find it here: http://ryanwest.info/blog/2011/django-tip-5-extending-contrib-auth-models-user/ Please let me know what you think. Regards

Best practices to create multiple users profiles using Auth

2011-09-27 Thread Santiago Basulto
Hello friends, i'm new with django. I've something to ask you. I'm building a website similar to eBay where i've different "kinds" of users. These are: CustomerUser and SellerUser. Both of them has different data to be saved. While reading docs and django book i noted the UserProfile "trick" (ht

Re: Implementing one app for multiple users with their own data.

2011-07-29 Thread Tom Evans
On Fri, Jul 29, 2011 at 11:14 AM, mongoose wrote: > Hi, > > I've a web app which works nicely on a per user or per company basis. > However I've gotten to the point where I want to run multiple > companies through the same app(not have to redeploy for each client). > However each client needs thei

Implementing one app for multiple users with their own data.

2011-07-29 Thread mongoose
Hi, I've a web app which works nicely on a per user or per company basis. However I've gotten to the point where I want to run multiple companies through the same app(not have to redeploy for each client). However each client needs their own data and shouldn't be able to see other clients data. A

multiple Sites, multiple Users, a User is restricted to one Site

2009-10-22 Thread ncherro
I'm working on a CMS project, and my idea is to have one Django project serve multiple websites. I want to set things up so that user1, user2, user3, etc... can log into my CMS website (e.g. www.cms.com) and update their respective websites (e.g. user1 updates www.user1.com, user2 updates www.use

I'm working on a application where no data is shared between two accounts and multiple users share an account

2008-05-06 Thread [EMAIL PROTECTED]
I'm working on a application where no data is shared between two accounts and multiple users share an account. Think backpackit or sugarcrm. The application hits the database frequently, many many queries are performed for each page. I've considered using the Sites app and just on