;
>> 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
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
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
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
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
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
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
##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
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
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
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
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
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:
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
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
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
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/
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
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
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
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
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. 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
23 matches
Mail list logo