Error

2019-11-27 Thread Ankita Gupta
This error is coming again and again.
HINT: Add or change a related_name argument to the definition for 
'User.groups' or 'User.groups'.
auth.User.user_permissions: (fields.E304) Reverse accessor for 
'User.user_permissions' clashes with reverse accessor for 
'User.user_permissions'.
HINT: Add or change a related_name argument to the definition for 
'User.user_permissions' or 'User.user_permissions'.

*settings.py*

import os

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'o-%6fsfg@f$iaci=i(a_5@h(_&1%wqe!i^vjj^6^jnpv0n32'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = ['127.0.0.1']


# Application definition

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'account',
'django.contrib.humanize',


]

MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'monitor.urls'

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
os.path.join(BASE_DIR, 'result/templates/result'),
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]

WSGI_APPLICATION = 'monitor.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}


# Password validation
# 
https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 
'django.contrib.auth.password_validation.MinimumLengthValidator',
'OPTIONS': {
'min_length': 6,
}
},
{
'NAME': 
'django.contrib.auth.password_validation.CommonPasswordValidator',
},
]


# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True

AUTH_USER_MODEl = 'account.User'

LOGIN_REDIRECT_URL = '/'

LOGOUT_REDIRECT_URL = '/'

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/

STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_URL = '/static/'


MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'

*models.py*


from django.db import models
from django.contrib.auth.models import AbstractUser
from django.conf import settings
from django.urls import reverse
from .validators import ASCIIUsernameValidator

class User(AbstractUser):
is_student = models.BooleanField(default=False)
is_mentor = models.BooleanField(default=False)
phone = models.CharField(max_length=60, blank=True, null=True)
address = models.CharField(max_length=60, blank=True, null=True)
picture = models.ImageField(upload_to="pictures/", blank=True, 
null=True)
email = models.EmailField(blank=True, null=True)

username_validator = ASCIIUsernameValidator()

def get_picture(self):
no_picture = settings.STATIC_URL + 'img/img_avatar.png'
try:
return self.picture.url
except:
return no_picture

def get_full_name(self):
full_name = self.username
if self.first_name and self.last_name:
full_name = self.first_name + " " + self.last_name
return full_name

class Student(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
id_number = models.CharField(max_length=20, unique=True)
class_name = models.CharField(max_length=5)

def __str__(self): 
return self.id_number
"""
def get_absolute_url(self):
return reverse('profile')
"""
I have read online it says to add this line in settings.py *AUTH_USER_MODEl 
= 'account.User' 

Re: basic_app not provide the User how to reslove ?

2019-11-27 Thread Ousseynou Diop
Hello friend,
I see the Error :
in line six do this - user = models.OneToOneField(User,
on_delete=models.CASCADE)
and in the __str__ function - return self.user.username

Thanks, let us know if this works.

[image: Mailtrack]

Sender
notified by
Mailtrack

11/28/19,
07:05:21 AM

Le jeu. 28 nov. 2019 à 04:11, MEGA NATHAN  a
écrit :

> Hi.
>
>
>
> PS C:\Users\Meghanathan\Desktop\django\django_levelfive\learning_users>
> python manage.py migrate basic_app
> SystemCheckError: System check identified some issues:
>
> ERRORS:
> basic_app.UserProfileInfo.User: (fields.E300) Field defines a relation
> with model 'User', which is either not installed, or is abstract.
> basic_app.UserProfileInfo.User: (fields.E307) The field
> basic_app.UserProfileInfo.User was declared with a lazy reference to
> 'basic_app.user', but app 'basic_app' doesn't provide model 'user'.
> PS C:\Users\Meghanathan\Desktop\django\django_levelfive\learning_users>
>
> And i have attached the snipscreen blow .
>
> Regards
> Meganathan G,
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/164892b0-aaba-4b55-b864-3cdbce1c0f20%40googlegroups.com
> 
> .
>


-- 
Ousseynou Diop
Software developer | Python rock | open source enthusiast
Portfolio : www.ousseynou.com 
Instructor : www.xarala.tech 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANmVVwffPWKiJgJzE9b5BM2sVVc7aLtM6q0d0vngSenHdN%3DbOg%40mail.gmail.com.


Re: Internship

2019-11-27 Thread Aniket Jain
Yes I already have an experience with remote working

On Thu, 28 Nov, 2019, 2:17 AM John McClain,  wrote:

> what experience with django do you have
> Do you speak good English
>
> Do you have criteria for your internship?
>
> On Wed, 27 Nov 2019 at 17:25, Aniket Jain  wrote:
>
>> Ya I am
>>
>> On Wed, 27 Nov, 2019, 10:36 PM John McClain, 
>> wrote:
>>
>>> are you interested in working remotely as an intern?
>>>
>>> On Wed, 27 Nov 2019 at 17:00, Aniket Jain 
>>> wrote:
>>>
 Hello everyone,
 I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
 deemed-to-be University Bangalore, and I am searching for the winter
 internship as full stack or backend developer in Bangalore.
 Please let me know.

 Regards
 Aniket mehta

 --
 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 view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
 
 .

>>>
>>>
>>> --
>>> John McClain
>>>
>>> Cell: 085-1977-823
>>> Skype: jmcclain0129
>>> Email: jmcclain0...@gmail.com
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CADV%2BovKZFwt1wSztQmYXuzwdaEDR4P-Nux7tqd5s3qqp4ejGrg%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> John McClain
>
> Cell: 085-1977-823
> Skype: jmcclain0129
> Email: jmcclain0...@gmail.com
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN-hv_oVpg6khzx14N061SYfGh%2BV7ciy-pGYhahAf6oMi9g%2B2w%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADV%2BovJyb3XgGL%2BLVu9-3LU9rM5DUZU6e0qHphgq0KGkdEQjCw%40mail.gmail.com.


Re: Choosing MySQL or PostGres on Heroku

2019-11-27 Thread Mike Dewhirst

On 28/11/2019 10:33 am, Tim Johnson wrote:
Using python 3.7.2, Django 2.1.5 on Linux development workstation with 
deployment to Heroku.


I retired several ago, primarily coding in python and mostly working 
in legacy CGI systems with MySQL backends and still use mysql on my 
workstation.


I am now essentially a hobbyist who wishes to use a django website to 
publish articles, memoirs and essays.


Some have urged me to convert to PostGresql as it is "baked into" 
heroku. However, my comfort level is with mysql.


Given my situation I'd welcome any reason why I should convert to 
postgresgl. I am not interested in stirring up controversy. Should 
there be a pressing reason to convert to PG I'd sooner do it now than 
when I've a couple of hundred articles published.


Any insights would be appreciated.


I use PostgreSQL and PGAdmin and find it brilliant. I have also used 
MySQL and phpMyAdmin in the past and occasionally helping other more 
recently. There is no comparison in my view. PG is far better. There is 
plenty of research out there which supports PG over MySQL but my own 
experience is simply non-negative (no problems) for PG and since I no 
longer use it , inconclusive for MySQL.


I no longer (since last century) have PHP on any of my servers and that 
is that.


However, routine examination of server logs shows that most hacking 
attempts target phpMyAdmin and other known php weaknesses. I'm not 
saying that avoiding php makes my servers more secure just that hackers 
seem to love probing phpMyAdmin.


Also, Django seems to expect PostgreSQL and other DBMSs require extra 
effort or extra documentation to avoid known problems.


YMMV but my advice is PostgreSQL.

Mike



thanks



--
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6ab84f74-df44-bd65-913b-a47bbd0768f6%40dewhirst.com.au.


Choosing MySQL or PostGres on Heroku

2019-11-27 Thread Tim Johnson
Using python 3.7.2, Django 2.1.5 on Linux development workstation with 
deployment to Heroku.


I retired several ago, primarily coding in python and mostly working in 
legacy CGI systems with MySQL backends and still use mysql on my 
workstation.


I am now essentially a hobbyist who wishes to use a django website to 
publish articles, memoirs and essays.


Some have urged me to convert to PostGresql as it is "baked into" 
heroku. However, my comfort level is with mysql.


Given my situation I'd welcome any reason why I should convert to 
postgresgl. I am not interested in stirring up controversy. Should there 
be a pressing reason to convert to PG I'd sooner do it now than when 
I've a couple of hundred articles published.


Any insights would be appreciated.

thanks

--
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6a3619c5-6c72-0c80-49c4-de0926a5041f%40akwebsoft.com.


I need any internship

2019-11-27 Thread mohamed khaled
I would like to work with any time anyone just works with someone to help 
any company or any startup I am good in English and I have a good skill not 
much because I am still junuior. I love so much programming and work with 
exciting projects. I just build projects alone I need to communicate with a 
team and other developers. in my country we have rare internships especial 
in Django. I hope anyone went through this stage to help me 
thank you guys 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9e925270-8df9-43e1-8fb7-d168a23dae96%40googlegroups.com.


Re: Power BI integration with django

2019-11-27 Thread Antonio CG
ty

El miércoles, 27 de noviembre de 2019, 19:39:04 (UTC+1), Integr@te System 
escribió:
>
> Hi friend,
>
> Blessing u:
>
> powerBI rest API:
> https://docs.microsoft.com/en-us/rest/api/power-bi/embedtoken
>
> Ironpython integrated .Net:
> https://ironpython.net/
>
> On Wed, Nov 27, 2019, 22:21 Brian > 
> wrote:
>
>> Does anyone know how to integrate a Power BI dashboard with a web page, 
>> without the user having to log in to the power BI account
>>
>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/e807c75c-e976-4ec3-8389-5a5011aaecf2%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/92b495c4-79be-4fd2-9feb-c367017c1c5a%40googlegroups.com.


Re: Internship

2019-11-27 Thread John McClain
what experience with django do you have
Do you speak good English

Do you have criteria for your internship?

On Wed, 27 Nov 2019 at 17:25, Aniket Jain  wrote:

> Ya I am
>
> On Wed, 27 Nov, 2019, 10:36 PM John McClain, 
> wrote:
>
>> are you interested in working remotely as an intern?
>>
>> On Wed, 27 Nov 2019 at 17:00, Aniket Jain 
>> wrote:
>>
>>> Hello everyone,
>>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>>> deemed-to-be University Bangalore, and I am searching for the winter
>>> internship as full stack or backend developer in Bangalore.
>>> Please let me know.
>>>
>>> Regards
>>> Aniket mehta
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> John McClain
>>
>> Cell: 085-1977-823
>> Skype: jmcclain0129
>> Email: jmcclain0...@gmail.com
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADV%2BovKZFwt1wSztQmYXuzwdaEDR4P-Nux7tqd5s3qqp4ejGrg%40mail.gmail.com
> 
> .
>


-- 
John McClain

Cell: 085-1977-823
Skype: jmcclain0129
Email: jmcclain0...@gmail.com

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAN-hv_oVpg6khzx14N061SYfGh%2BV7ciy-pGYhahAf6oMi9g%2B2w%40mail.gmail.com.


Re: Internship

2019-11-27 Thread Kanyamahanga Hubert
Yes I am.

Hubert

On Wed, 27 Nov 2019 at 18:15, Karan Mittal 
wrote:

> Yes Sir,
> I am also up for intership role for remote work.
> I have experience with remote work.
> Do check out my LinkedIn profile: https://www.linkedin.com/in/karansmittal
>
> Thanks and Regards,
> Karan Mittal
>
> On Wed, 27 Nov, 2019, 10:37 PM John McClain, 
> wrote:
>
>> are you interested in working remotely as an intern?
>>
>> On Wed, 27 Nov 2019 at 17:00, Aniket Jain 
>> wrote:
>>
>>> Hello everyone,
>>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>>> deemed-to-be University Bangalore, and I am searching for the winter
>>> internship as full stack or backend developer in Bangalore.
>>> Please let me know.
>>>
>>> Regards
>>> Aniket mehta
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> John McClain
>>
>> Cell: 085-1977-823
>> Skype: jmcclain0129
>> Email: jmcclain0...@gmail.com
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAO24gqw_RrSDidUNwKVmU4XoFPktzDQL16BEngTJRr0xziFvPg%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAE4dFh06cQDTkem%3DkQbb%2BOnjuxYc8vwC8V_atRZTJms%3DXFXXXw%40mail.gmail.com.


Re: Power BI integration with django

2019-11-27 Thread Integr@te System
Hi friend,

Blessing u:

powerBI rest API:
https://docs.microsoft.com/en-us/rest/api/power-bi/embedtoken

Ironpython integrated .Net:
https://ironpython.net/

On Wed, Nov 27, 2019, 22:21 Brian  wrote:

> Does anyone know how to integrate a Power BI dashboard with a web page,
> without the user having to log in to the power BI account
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e807c75c-e976-4ec3-8389-5a5011aaecf2%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAP5HUWomHf049TkkuVXc1xwNxLNRufmZ0EN1sVXQp0Gg1_NEmA%40mail.gmail.com.


Re: Internship

2019-11-27 Thread Karan Mittal
Yes Sir,
I am also up for intership role for remote work.
I have experience with remote work.
Do check out my LinkedIn profile: https://www.linkedin.com/in/karansmittal

Thanks and Regards,
Karan Mittal

On Wed, 27 Nov, 2019, 10:37 PM John McClain,  wrote:

> are you interested in working remotely as an intern?
>
> On Wed, 27 Nov 2019 at 17:00, Aniket Jain  wrote:
>
>> Hello everyone,
>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>> deemed-to-be University Bangalore, and I am searching for the winter
>> internship as full stack or backend developer in Bangalore.
>> Please let me know.
>>
>> Regards
>> Aniket mehta
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> John McClain
>
> Cell: 085-1977-823
> Skype: jmcclain0129
> Email: jmcclain0...@gmail.com
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO24gqw_RrSDidUNwKVmU4XoFPktzDQL16BEngTJRr0xziFvPg%40mail.gmail.com.


Re: Internship

2019-11-27 Thread Aniket Jain
Sorry I didn't get

On Wed, 27 Nov, 2019, 11:18 PM victor livingstone, 
wrote:

> I am.
>
> On Nov 27, 2019 18:06, "John McClain"  wrote:
>
>> are you interested in working remotely as an intern?
>>
>> On Wed, 27 Nov 2019 at 17:00, Aniket Jain 
>> wrote:
>>
>>> Hello everyone,
>>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>>> deemed-to-be University Bangalore, and I am searching for the winter
>>> internship as full stack or backend developer in Bangalore.
>>> Please let me know.
>>>
>>> Regards
>>> Aniket mehta
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> John McClain
>>
>> Cell: 085-1977-823
>> Skype: jmcclain0129
>> Email: jmcclain0...@gmail.com
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKjtiqphr_%3DVBXu5w9qFGakNFJn4c9x1rYUp0yG2vN7PVT%3DKvA%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADV%2BovK162SDceSfTa9d51rBgNL1fwJUyDPt7f%2BtRmq6Dukf4g%40mail.gmail.com.


Re: Internship

2019-11-27 Thread victor livingstone
I am.

On Nov 27, 2019 18:06, "John McClain"  wrote:

> are you interested in working remotely as an intern?
>
> On Wed, 27 Nov 2019 at 17:00, Aniket Jain  wrote:
>
>> Hello everyone,
>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>> deemed-to-be University Bangalore, and I am searching for the winter
>> internship as full stack or backend developer in Bangalore.
>> Please let me know.
>>
>> Regards
>> Aniket mehta
>>
>> --
>> 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 view this discussion on the web visit https://groups.google.com/d/
>> msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%
>> 2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> John McClain
>
> Cell: 085-1977-823
> Skype: jmcclain0129
> Email: jmcclain0...@gmail.com
>
> --
> 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 view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_
> D8E20vgQ6ipjCjOQcw%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKjtiqphr_%3DVBXu5w9qFGakNFJn4c9x1rYUp0yG2vN7PVT%3DKvA%40mail.gmail.com.


Re: Internship

2019-11-27 Thread Aniket Jain
Ya I am

On Wed, 27 Nov, 2019, 10:36 PM John McClain,  wrote:

> are you interested in working remotely as an intern?
>
> On Wed, 27 Nov 2019 at 17:00, Aniket Jain  wrote:
>
>> Hello everyone,
>> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
>> deemed-to-be University Bangalore, and I am searching for the winter
>> internship as full stack or backend developer in Bangalore.
>> Please let me know.
>>
>> Regards
>> Aniket mehta
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> John McClain
>
> Cell: 085-1977-823
> Skype: jmcclain0129
> Email: jmcclain0...@gmail.com
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADV%2BovKZFwt1wSztQmYXuzwdaEDR4P-Nux7tqd5s3qqp4ejGrg%40mail.gmail.com.


Re: Internship

2019-11-27 Thread John McClain
are you interested in working remotely as an intern?

On Wed, 27 Nov 2019 at 17:00, Aniket Jain  wrote:

> Hello everyone,
> I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
> deemed-to-be University Bangalore, and I am searching for the winter
> internship as full stack or backend developer in Bangalore.
> Please let me know.
>
> Regards
> Aniket mehta
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com
> 
> .
>


-- 
John McClain

Cell: 085-1977-823
Skype: jmcclain0129
Email: jmcclain0...@gmail.com

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAN-hv_pmz12g%2BYwRJsLqw7PnOwkTFMs_D8E20vgQ6ipjCjOQcw%40mail.gmail.com.


Internship

2019-11-27 Thread Aniket Jain
Hello everyone,
I am Aniket Mehta, of 3rd year currently pursuing my BTech from Jain
deemed-to-be University Bangalore, and I am searching for the winter
internship as full stack or backend developer in Bangalore.
Please let me know.

Regards
Aniket mehta

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADV%2BovJmuPeaCr3bcOiy4-EOyPhCb%2BMErpwZ-0kJTPE4SYvOew%40mail.gmail.com.


Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread Patrick Carra
okay so I dumped all the contents of my editCircuit.html into a file called 
circuitinfotable_form.html and now I get my form.  But I still don't 
understand why I had to use this name since I never specified it anywhere.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4419ba31-8535-4723-9c61-3627faadf9bb%40googlegroups.com.


Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread Patrick Carra
I don't have a circuitinfotable_form.html.  I never specified 
circuitinfotable_form in any of my code.  What should that form contain?  
My /viewLit/editCircuit.html form contains the following:




{% block content %}


{% csrf_token %}
{{form.as_p}}





{% endblock %}



Shouldn't that suffice for the template form?  What is calling the 
circuitinfotable_form.html?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a06f82fb-0920-4e76-b0cb-027cda1ced92%40googlegroups.com.


Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread franz ulenaers

put your template |'circuitinfotable_form.html' |on one of your folders :|
/home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html
/home/db_user/ciopsdb/templates/viewLit/circuitinfotable_form.html
/home/db_user/ciopsdb/editLit/templates/viewLit/circuitinfotable_form.html
/home/db_user/ciopsdb/viewLit/templates/viewLit/circuitinfotable_form.html
/home/db_user/ciopsdb/searchLit/templates/viewLit/circuitinfotable_form.html
/home/db_user/ciopsdb/homepage/templates/viewLit/circuitinfotable_form.html

|

--
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2085c566-0c3e-afe1-b232-7bab5af142bf%40gmail.com.


Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread Patrick Carra
I didn't have one.  I thought UpdateView would create the form for me.  But 
I was working the problem and made one:
from django.forms import ModelForm
from . models import Circuitinfotable

class CircuitinfotableForm(ModelForm):
class Meta:
model = Circuitinfotable
fields = '__all__'


So I also changed my view:
class editLit(UpdateView):
pk_url_kwarg = 'circuitid'
model=Circuitinfotable
form_class= CircuitinfotableForm
template="/viewLit/editCircuit.html"
#fields='__all__'




-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cdbc9127-6a2f-4022-bbda-dfec83101834%40googlegroups.com.


Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread Raja Sekar Sambath
Hey Patrick,

Can you post forms.py here?

On Wed, 27 Nov 2019 at 21:23, Patrick Carra  wrote:

> Raja that was a great suggestion thank you!  Once a started playing around
> with the urls in the project level I found that it was still being routed
> to viewLit despite the edit/ in the url I was passing.  I decided to put
> all these classes into the same app viewLit/views.py and now my parameter
> is correct.
>
> *SELECT* ••• *FROM* "circuitinfotable" *WHERE* "circuitinfotable".
> "circuitid" = 'STTK-100G-18040-01-WRBB'
>
> The problem I am now having is that UpdateView cannot find the template
> circuitinfotable_form.html
> Environment:
>
>
> Request Method: GET
> Request URL: http://98.8.61.133:8080/viewLit/STTK-100G-18040-01-WRBB/edit
>
> Django Version: 2.2.4
> Python Version: 3.6.8
> Installed Applications:
> ['editLit.apps.EditlitConfig',
>  'viewLit.apps.ViewlitConfig',
>  'searchLit.apps.SearchlitConfig',
>  'homepage.apps.HomepageConfig',
>  'base.apps.BaseConfig',
>  'django.contrib.admin',
>  'django.contrib.auth',
>  'django.contrib.contenttypes',
>  'django.contrib.sessions',
>  'django.contrib.messages',
>  'django.contrib.staticfiles',
>  'debug_toolbar']
> Installed Middleware:
> ['django.middleware.security.SecurityMiddleware',
>  'django.contrib.sessions.middleware.SessionMiddleware',
>  'django.middleware.common.CommonMiddleware',
>  'django.middleware.csrf.CsrfViewMiddleware',
>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>  'debug_toolbar.middleware.DebugToolbarMiddleware',
>  'django.contrib.messages.middleware.MessageMiddleware',
>  'django.middleware.clickjacking.XFrameOptionsMiddleware']
>
> Template loader postmortem
> Django tried loading these templates, in this order:
>
> Using engine django:
> * django.template.loaders.filesystem.Loader:
> /home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.filesystem.Loader:
> /home/db_user/ciopsdb/templates/viewLit/circuitinfotable_form.html (Source
> does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/editLit/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/viewLit/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/searchLit/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/homepage/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/contrib/admin/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/contrib/auth/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
> * django.template.loaders.app_directories.Loader:
> /home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/debug_toolbar/templates/viewLit/circuitinfotable_form.html
> (Source does not exist)
>
>
>
> Traceback:
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/exception.py"
> in inner
>   34. response = get_response(request)
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/base.py"
> in _get_response
>   145. response = self.process_exception_by_middleware(e,
> request)
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/base.py"
> in _get_response
>   143. response = response.render()
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
> in render
>   106. self.content = self.rendered_content
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
> in rendered_content
>   81. template = self.resolve_template(self.template_name)
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
> in resolve_template
>   63. return select_template(template, using=self.using)
>
> File
> "/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/loader.py"
> in select_template
>   47. raise TemplateDoesNotExist(', '.join(template_name_list),
> chain=chain)
>
> Exception Type: TemplateDoesNotExist at
> /viewLit/STTK-100G-18040-01-WRBB/edit
> Exception Value: viewLit/circuitinfotable_form.html
>
>
> My viewLit/models.py is:
> class 

Re: Trying to update a record using UpdateView Error: Circuitinfotable matching query does not exist

2019-11-27 Thread Patrick Carra
Raja that was a great suggestion thank you!  Once a started playing around 
with the urls in the project level I found that it was still being routed 
to viewLit despite the edit/ in the url I was passing.  I decided to put 
all these classes into the same app viewLit/views.py and now my parameter 
is correct.

*SELECT* ••• *FROM* "circuitinfotable" *WHERE* "circuitinfotable".
"circuitid" = 'STTK-100G-18040-01-WRBB'

The problem I am now having is that UpdateView cannot find the template 
circuitinfotable_form.html
Environment:


Request Method: GET
Request URL: http://98.8.61.133:8080/viewLit/STTK-100G-18040-01-WRBB/edit

Django Version: 2.2.4
Python Version: 3.6.8
Installed Applications:
['editLit.apps.EditlitConfig',
 'viewLit.apps.ViewlitConfig',
 'searchLit.apps.SearchlitConfig',
 'homepage.apps.HomepageConfig',
 'base.apps.BaseConfig',
 'django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'debug_toolbar']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware']

Template loader postmortem
Django tried loading these templates, in this order:

Using engine django:
* django.template.loaders.filesystem.Loader: 
/home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.filesystem.Loader: 
/home/db_user/ciopsdb/templates/viewLit/circuitinfotable_form.html (Source 
does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/editLit/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/viewLit/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/searchLit/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/homepage/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/base/templates/viewLit/circuitinfotable_form.html 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/contrib/admin/templates/viewLit/circuitinfotable_form.html
 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/contrib/auth/templates/viewLit/circuitinfotable_form.html
 
(Source does not exist)
* django.template.loaders.app_directories.Loader: 
/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/debug_toolbar/templates/viewLit/circuitinfotable_form.html
 
(Source does not exist)



Traceback:

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/exception.py"
 
in inner
  34. response = get_response(request)

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/base.py"
 
in _get_response
  145. response = self.process_exception_by_middleware(e, 
request)

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/core/handlers/base.py"
 
in _get_response
  143. response = response.render()

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
 
in render
  106. self.content = self.rendered_content

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
 
in rendered_content
  81. template = self.resolve_template(self.template_name)

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/response.py"
 
in resolve_template
  63. return select_template(template, using=self.using)

File 
"/home/db_user/ciopsdb/venv/lib64/python3.6/site-packages/django/template/loader.py"
 
in select_template
  47. raise TemplateDoesNotExist(', '.join(template_name_list), 
chain=chain)

Exception Type: TemplateDoesNotExist at 
/viewLit/STTK-100G-18040-01-WRBB/edit
Exception Value: viewLit/circuitinfotable_form.html


My viewLit/models.py is:
class Circuitinfotable(models.Model):
id1 = models.IntegerField(blank=True,null=True)
pid = models.CharField(max_length=255, blank=True, null=True)
circuitid = models.CharField(primary_key=True, max_length=255, 
blank=True, null=False)
bandwidth = models.CharField(max_length=255, blank=True, 

Power BI integration with django

2019-11-27 Thread Brian
Does anyone know how to integrate a Power BI dashboard with a web page, 
without the user having to log in to the power BI account

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e807c75c-e976-4ec3-8389-5a5011aaecf2%40googlegroups.com.


authentication for Channels2 via mobile application

2019-11-27 Thread Levent Engin
Hi all;

Can we only use session authentication for Channels2 and if we use mobile
application what would be the best way or method to authenticate? Any
samples or documentation?

BR

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANQNAiT5RRyqc8ow78%2Bta-57ep8WrTLv25%3D7E_JDXZHzPp0qHw%40mail.gmail.com.


Re:

2019-11-27 Thread Integr@te System
Hi man,

U mean that use alert() method on onload page event!?

On Wed, Nov 27, 2019, 20:28 Anirudh Jain  wrote:

> Message on the URL ? Could you please give an example ?
>
> On Wed, 27 Nov 2019, 18:08 vaneet bawa,  wrote:
>
>> can someone please tell me that how I can display the message on the url
>> from which I am getting the response
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAKubXnycx%3DqU2h4SgRJ%3D_HEXbSqfbJ8ii2TbVQVzYGzcT9m7Qg%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAC3mK7dVtz9r%2B8yGdKYCLfts0hgv%2Bd325BnqHOKFMMGp6Hx27A%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAP5HUWpX47%3DcPiqLCo1cg0_GyZ7c-bqkS3X-FiFytBQ%2BWZ6%3DqA%40mail.gmail.com.


Re:

2019-11-27 Thread Anirudh Jain
Message on the URL ? Could you please give an example ?

On Wed, 27 Nov 2019, 18:08 vaneet bawa,  wrote:

> can someone please tell me that how I can display the message on the url
> from which I am getting the response
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKubXnycx%3DqU2h4SgRJ%3D_HEXbSqfbJ8ii2TbVQVzYGzcT9m7Qg%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAC3mK7dVtz9r%2B8yGdKYCLfts0hgv%2Bd325BnqHOKFMMGp6Hx27A%40mail.gmail.com.


[no subject]

2019-11-27 Thread vaneet bawa
can someone please tell me that how I can display the message on the url
from which I am getting the response

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKubXnycx%3DqU2h4SgRJ%3D_HEXbSqfbJ8ii2TbVQVzYGzcT9m7Qg%40mail.gmail.com.


Re: Internship

2019-11-27 Thread John McClain
I have task for a start up that is not launched yet

I am a student as well but behind you in my understanding

I built this project as part of my final

I am looking for help in developing it further as there is advanced
programming still needed

I am not able to pay traditional wage

I assume you could earn some sort of school credits

If possible * can award Beta and Charlie transactions*

*are you interested in learning more*

On Fri, 22 Nov 2019 at 11:33, Scyil sharma  wrote:

> I am sahil sharma, a student of btech 3rd year and I'm seeking for an
> internship in Winter vacation. I would like to be work as a backend
> developer.
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/781ac56c-d22b-465e-9345-f629e077f2f6%40googlegroups.com
> .
>


-- 
John McClain

Cell: 085-1977-823
Skype: jmcclain0129
Email: jmcclain0...@gmail.com

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAN-hv_p7UUuXpc%2BDxbbpx3k3fYj86H154Tew0GqUEN%2BEOgxFzw%40mail.gmail.com.


Re: Django begginer

2019-11-27 Thread Daniel Almeida
Thank you guys I set as charfield and will be ok for now.

So maybe u can help me further, this is a timesheet app and I have all set 
in django admin. I can add and delete data from my table in the 
administration mode.
Now my question is how can I import this to a html template to be able to 
add data from there instead of using the admin portal?

So lets say I want to display this table in my index.html file like with a 
"add/+" and "save" button to add contents to my db:

class TaskAdmin(admin.ModelAdmin):
list_display = ('date', 'client', 'project', 'assignment', 'hours')


>
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/982c9219-4324-4657-92a0-c77fd85511ee%40googlegroups.com.