Re: Looking for collaborators for an online marketplace project with Python, Django, React.js and Next.js

2024-02-11 Thread Hassan Shah
I am interested in project as a react.js developer and learning Django also so I think this project is the best fit for me On Mon, Feb 12, 2024, 12:45 AM Basith wrote: > im interested could you please create a WhatsApp group, here's my > number. +919544716586 > > On Mon, 12 Feb 2024 at 01:12, Jo

Re: Project together

2023-12-11 Thread Akshat Shah
I am interested as well On Monday 11 December 2023 at 01:48:09 UTC+5:30 Williams wrote: > Add me 0037369134555 > > On Thu, Nov 23, 2023, 8:14 PM Youssef Bachraoui > wrote: > >> Hi developer i search to make a group on WhatsApp to begin a project >> together anyone interested about that? >> >>

Re: Need a partner

2023-11-24 Thread Tannu Shah
Intrested On Fri 24 Nov, 2023, 2:05 AM Dawda Borje Kujabi, wrote: > Interested > > > Original message > From: Lenox Brown > Date: Thu, 23 Nov 2023, 6:20 pm > To: django-users@googlegroups.com > Subject: Re: Need a partner > > I am interested > > On Thu, 23 Nov 2023, 21:06 Mash

Exclusive Review & Guest Posting Opportunity

2023-07-16 Thread Atharva Shah
Hi Django Community, I would like to extend an invitation for you to review our credible tech blog, focusing on Python, Django, and related technologies. I believe your expertise in this field would provide valuable insights and feedback. Here are the details: *Blog URL: *https://atharvashah.ne

Re: Looking for Django Developer - Co founder for Fintech Product

2022-08-17 Thread Hassan Shah
Hi I am a web developer with 2 years of experience in python Django and php Laravel. I am interested to work with you. On Wed, Aug 17, 2022, 7:50 PM Mannoj Tewari wrote: > Hi, > > I am looking for Django Developer / Co-founder for fintech product in > Mumbai. > > Regards > > -- > You received

Help to implement join query in django orm

2022-07-21 Thread Avi shah
I have two tables Tbl 1 & Tbl 2 I need to connect the two tables using a join Thanks and regards, Avi shah -- 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, sen

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Shah Tech
you must first your current directory to your project directory mysite: in window type: cd mysite and then try python manage.py runserver On Thursday, March 24, 2022 at 6:51:53 PM UTC+5 Kasper Laudrup wrote: > On 24/03/2022 08.05, harsh jain wrote: > > Still facing issue ? > > This course will he

Re: FileNotFoundError at /login/

2022-03-24 Thread Shah Tech
1. According to your model, you meant the models.py file and default.jpg are in same directory. => But according to the error it smells that they are not same directory, so try to point to the exact relative path of the image. On Thursday, March 24, 2022 at 10:10:13 AM UTC+5 Delvin Alexander wro

Re : Need help in django database related

2021-10-13 Thread Avi shah
I want to build an platform where admin can add events and I want end users to register for that event , so how do I save the data/registration of the user for that particular event , how can i create dynamic tables like 1 table for 1 event or is there some other logic behind it? Thanks in advance

Re : help in updating multiple objects in a single template

2021-07-16 Thread Avi shah
I have a query which returns multiple objects , so how to update those values in a single page , currently i am only getting one form with one object , I want all the objects and one submit button , please help Views.py [image: image.png] Form [image: image.png] Current form loook [image: image.

Re: Role based Authentication

2021-07-07 Thread Avi shah
you can normally do it using fbv's , just make sure while saving the model , you also save the user model also parallely with the student model(in reference with my repo) On Thu, Jul 8, 2021 at 7:44 AM DJANGO DEVELOPER wrote: > Avi Shah I have just visited your github repo. is there a

Re: Role based Authentication

2021-07-07 Thread Avi shah
https://github.com/Avishah123/Multi-user-auth1 On Wed, Jul 7, 2021 at 8:16 PM DJANGO DEVELOPER wrote: > f > > On Wed, Jul 7, 2021 at 7:07 PM LokRaj Kumar Vuppu < > lokrajkumarvu...@gmail.com> wrote: > >> How to assign a role to user when registered into our application. >> >> -- >> You received

Re: django send defferent html message to defferent email address

2021-07-03 Thread Avi shah
You can use context or string concatenation to pass a specific type of user a specific message you can do it by and if statement where if request.user == admin : then the below code for it subject = 'Techela 6.0 Registration' from_email = settings.DEFAULT_FROM_EMAIL templa

Re: django send defferent html message to defferent email address

2021-07-03 Thread Avi shah
from django.conf import settings from django.core.mail import send_mail def valorant_view(request): if (valorant_registration.objects.count() <= 160): if request.method == 'POST': first_name = request.POST['first_name'] last_name = request.POST['last_name']

Re: os module import error

2021-05-31 Thread Avi shah
you could just add "import os" in settings.py file On Mon, May 31, 2021 at 8:32 PM James Ndubuisi wrote: > Good afternoon. > It seems on creating the Django project using django-admin startproject > command , the os module isn't imported by default, causing an error. > > -- > You received this m

How to use chartjs

2021-01-08 Thread Dhruvil Shah
Basically I want to use 'chartjs' for display "Clustered Bar chart", with following things year wise Total amount Amount Received Amount Left I want to fetch data from data base and display it on chart, I have saved data of all above field 3 fields in one table for each date and I want to also f

How to Use CRUD Operation in Any Page

2021-01-03 Thread Dhruvil Shah
Basically i want to do CRUD operation in one specific table Id for example if i am in 'http://127.0.0.1:8000/view/1' this page i want to do crud operation for this specific id and have small table below it. 2 tables class Allinvoice(models.Model): class Invoicedetails(models.Model) invoice =

How to make relationship in django models in such scenario

2020-12-31 Thread Dhruvil Shah
*models.py* So,here i want to make Invoicemgmt model in which i can have multiple entries for Invoice table having customer,project and Invoice_amount. Basically,requirement is that whenever i see 'view_Invoice' of some id,first i will see all data of that specific id on that page and then i want

need suggestion + recomendation

2020-12-26 Thread aizaz ali shah
suggest me the best free course channel website to learn Django app development?? -- 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...@googl

Can anyone please look at this query and help me to make a model for it

2020-12-23 Thread Dhruvil Shah
https://stackoverflow.com/questions/65427344/how-to-select-multiple-person-for-same-project -- 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

Re: 127.0.0.1 refused to connect.

2020-12-18 Thread Dhruvil Shah
Try uninstalling django and re-install it On Fri, 18 Dec 2020, 23:42 Parul., wrote: > I am using the command python manage.py runserver > But it is not running the servers > I tried localhost with 8000 and 8080 also > The tried 0.0.0.0:8000 and with 8080 > > > I am not running any other servers.

Migration of database

2020-12-14 Thread Dhruvil Shah
I have already made my project in Django and used built-in database Sqlite and now I want it in production on heroku so how can I switch all data from Sqlite database to Postgresql database? -- You received this message because you are subscribed to the Google Groups "Django users" group. To uns

Django has Future?

2020-12-13 Thread Dhruvil Shah
I am currently confused that Django has Future or not. Because I am not able to find that much local companies using Django. I also see demand of Nodejs is increasing day by day. So, should I start learning Nodejs, express for Backend due to lack of opportunities or if Django has future I will sti

Re:

2020-12-03 Thread Dhruvil Shah
I suggest u to watch tutorial on YT if Code with Harry Geeky Shows Code with Mitch On Thu, 3 Dec 2020, 19:26 neha, wrote: > Hi, > > I am a beginner in Django,I watched a tutorial on Django from edx > course,and followed the same procedures but getting 404 error for the very > basic app(hello ap

Re: Date validation in javascript

2020-12-03 Thread Avi shah
Hi , Check this out https://www.youtube.com/watch?v=cBOyVNR2Seg On Thu, Dec 3, 2020 at 6:48 PM Eugene TUYIZERE wrote: > Dear Team, > > In my project, I have the date format MM. How to validate that the MM > part cannot exceed 12? I think this can be done in javascript but don't > know how.

Guidance for Django-React

2020-11-30 Thread Dhruvil Shah
I am currently learning Django and made many projects in it. And I have also made DRF API projects. So, now I am thinking of learning React for frontend development and will make projects with React and Django. Afterwards, I am also thinking of making Django Rest API of any projec

Re: Integrating GeoDjango with Esri API

2020-11-20 Thread Dhruvil Shah
eo, and that's what I specifically need. > > Saludos, > *Rodrigo Culagovski* > Director > +569 7667 0402 > H98R+8C Santiago > > > > On Fri, 20 Nov 2020 at 15:43, Dhruvil Shah wrote: > >> You can follow this YouTuber he has made a project on GeoDjango. &g

Re: Integrating GeoDjango with Esri API

2020-11-20 Thread Dhruvil Shah
You can follow this YouTuber he has made a project on GeoDjango. https://youtu.be/_KIMevaubfQ On Fri, 20 Nov 2020, 18:29 Rodrigo Cea, wrote: > I'm developing a mapping website. I will be consuming map layers from ESRI > Online. I see they have a fairly sophisticated Python API. The site will b

when I click the right button in my slider it moves right, but after once moving right its neither moves right nor left even after clicking the slide left button or slide right button. views.py here i

2020-10-24 Thread Dhruvil Shah
views.py def index(request): allProds = [] catprods = Allmusic.objects.values('category', 'sno') cats = {item['category'] for item in catprods} for cat in cats: prod = Allmusic.objects.filter(category=cat) n = len(prod) nSlides = n // 4 + ceil((n / 4) - (n // 4)) allProds.append([p

Re: ImportError: cannot import name 'ProductDetails' from 'pages.views'

2020-10-16 Thread Dhwanil Shah
eceived 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 &g

Re: 'str' object is not callable

2020-09-23 Thread Avi shah
Try adding ''' as it can only take one string as parameter , ''' ''your message'' . '' your message 2 '' ''' On Wed, Sep 23, 2020 at 9:24 PM Salima Begum wrote: > Hi all, > > I am getting this error. May I know the reason why this error occurred? > > Here I attached two screenshots please review

Re: Online food ordering system Django

2020-09-17 Thread Avi shah
Hey , Check out this repo https://github.com/yashjhaveri05/E-Food.git On Wed, Sep 16, 2020 at 8:38 PM Tanni Seriki wrote: > Please those any one has a project like online food ordering system... > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

Re:

2020-08-14 Thread Avi shah
Hello Suraj , Kindly send a your code for settings .py , urls.py and views.py so that we could resolve the issue On Fri, Aug 14, 2020 at 7:32 PM Suraj Kumar wrote: > Hi guys, > > I am to new django. > > I am making blog website project. During the making blog website I am > stuck one point for

Re: 'Sandboxed' Template engine/context

2020-08-13 Thread Mitesh Shah
Hi Michael, I'm looking for a similar option to allow users to upload their own templates for theming purposes. Did you find any solution to this? Thanks, Mitesh On Friday, July 10, 2020 at 2:52:36 PM UTC+5:30 michael.t...@gmail.com wrote: > Hi all, > > Does anyone know of a straightforward

Re: Mysql Connect in Django

2020-07-20 Thread Avi shah
Watch this to solve your error https://www.youtube.com/watch?v=6SnE0r7g2lE On Mon, Jul 20, 2020 at 7:13 PM Ravindra Mogilipalem < ravindra.m...@gmail.com> wrote: > > When i install mysqlclient in Django so many errors are occured like > Running setup.py clean for mysqlclient > Failed to build

Re: Static not working on unix while working on windows

2020-07-08 Thread Avi shah
Hi Ashish , You saw what I sent ? On Wed, Jul 8, 2020, 9:55 PM ashish goyal wrote: > Hi ajeet, yes done collectstatic > > Sent from my iPhone > > On 08-Jul-2020, at 20:31, Ajeet Kumar Gupt > wrote: > >  > You tried to first run collectststic > > On Mon, Jul 6, 2020, 10:20 PM ashish goyal > wr

Re: Static not working on unix while working on windows

2020-07-07 Thread Avi shah
) mimetypes.add_type("text/javascript", ".js", True) And let me know if theres any error in django Thanks & Regards , Avi Shah (9167199744) > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsu

Re: Unable to import HTML code

2020-06-29 Thread Avi shah
gt; django...@googlegroups.com > wrote: > >> Try adding this to your project's settings.py file (at the bottom): >> >> STATIC_URL = '/static/' >> STATICFILES_DIRS = ( >> os.path.join(BASE_DIR, "static"), >> ) >> >> On

Re: Unable to import HTML code

2020-06-28 Thread Avi shah
I did everything , its still not showing up On Sunday, June 28, 2020 at 6:31:02 AM UTC+5:30, Ajish Gopinath wrote: > > Create view.py and url.py to include HTML page or template > > On Sat 27 Jun, 2020, 9:25 PM Avi shah, > > wrote: > >> Hi my name is Avi >> >

Re: Unable to import HTML code

2020-06-27 Thread Avi shah
Even I am facing the same problem On Saturday, June 27, 2020 at 9:58:06 PM UTC+5:30, mohamed khaled wrote: > > What do you want exactly ? do you mean all static files do you want to > import it from old project to new project ?? > > On Sat, 27 Jun 2020 at 17:54, Avi shah > &

Re: Unable to import HTML code

2020-06-27 Thread Avi shah
I have developed a front end using bootstrap and different themes , and now I want to convert it into django html , I've loaded the static files and mentioned all the templates sec in my settings.py but for some reason my css is not being shown on the project even though it's been collected usin

Re: Unable to import HTML code

2020-06-27 Thread Avi shah
No, I have created 1 static website in html and now I want to import it in django new project -- 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+unsub

Unable to import HTML code

2020-06-27 Thread Avi shah
Hi my name is Avi Just finished a course from Udemy on django. Unable to import HTML and CSS to new project Pls guide me -- 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

Django Development opportunity in Ahmedabad, India

2020-01-13 Thread Roshan Shah
ld be perm/contract/contract to hire opportunity as we can mutually agree upon. We are really looking for someone who can innovate, stick around and grow the team. -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contain confidential or legally

Re: How to do SEO for my django website

2020-01-13 Thread Roshan Shah
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/6f078a37-ca3e-45e7-b155-0c61cc46775f%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/6f078a37-ca3e-45e7-b155-0c61c

Re: How to ensure genuine emails despite valid email format?

2019-12-30 Thread Roshan Shah
scussion on the web visit > https://groups.google.com/d/msgid/django-users/e60804c0-ff8b-442d-95ad-efd6dbbc5e12%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/e60804c0-ff8b-442d-95ad-efd6dbbc5e12%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- -

Blockchain (Internship certificate)

2019-12-30 Thread Roshan Shah
the team. -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contain confidential or legally privileged information and is intended only for the use of the intended recipient(s). Any unauthorized disclosure, dissemination, distribution

How to ensure genuine emails despite valid email format?

2019-12-29 Thread Roshan Shah
do we ensure that before we accept emails, both the above cases are put in pending status with appropriate message and reason code to put them in pending? -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contain confidential or legally

Re: Password protection of url in gunicorn like .htaccess

2019-12-29 Thread Roshan Shah
Anyone has any clue on this? On Fri, Dec 27, 2019 at 3:11 PM Roshan Shah wrote: > Hi there, > > I have a django site hosted on heroku. I want to restrict production site > and staging sites running gunicorn to outside general public. > > Do we have anything like .htaccess pass

Password protection of url in gunicorn like .htaccess

2019-12-27 Thread Roshan Shah
Hi there, I have a django site hosted on heroku. I want to restrict production site and staging sites running gunicorn to outside general public. Do we have anything like .htaccess password protection in gunicorn? or Do I have to setup login / pass / admin area? -- Roshan Shah This e-mail

Re: TeenagerStartups looking for Project Interns for Django/React Project

2019-12-19 Thread Roshan Shah
Dec 19, 2019 at 4:52 AM Roshan Shah > wrote: > >> >> I am toying with idea of Teenager Startups and we just started >> development in Django 3.0 this week. >> >> This is entrepreneurship education platform for teenagers and we have a 5 >> month MVP devel

TeenagerStartups looking for Project Interns for Django/React Project

2019-12-18 Thread Roshan Shah
part of their academic project with university co-signing their agreement of Non Disclosure and other confidentiality terms, time commitment, etc. -- -- Roshan Shah This e-mail message may contain confidential or legally privileged information and is intended only for the use of the intended

Help for project definition

2019-09-29 Thread Mahir Shah
I want to build an big project in django. Please can anyone suggest me some good projects based on the current world problems I am comfortable with any domain . -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group an

Help for building recommendation system in django

2019-09-23 Thread Mahir Shah
Hello , I am trying to build an recommendation system on books using django framework but am not been able do it . Please help me out with this -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

Do we have solutions for this?

2019-02-25 Thread Roshan Shah
issues? -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contain confidential or legally privileged information and is intended only for the use of the intended recipient(s). Any unauthorized disclosure, dissemination, distribution, copying or

Need Contributors and beginners for job portal ( Whatsapp group )

2019-01-31 Thread Roshan Shah
) Front end devs 2) Designers 3) Database Architects 4) Django Devs 5) Architects If you are interested, please send me a whatsapp hello on +1 (604) 630-4292. If I get sufficient response, we will start the project mid february. -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519

Re: help for django interview task

2019-01-31 Thread Roshan Shah
for: https://django-dynamic-db-router.readthedocs.io/en/latest/index.html > > On Thursday, 31 January 2019 14:38:44 UTC+1, Roshan Shah wrote: >> >> Which company is giving you a task to build a sort of full app >> functionality for interview? >> >> What if you solve

Re: help for django interview task

2019-01-31 Thread Roshan Shah
o django-users@googlegroups.com. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAPUAdBF7yPQaDZTBhoCaGBqP6ukBuxk0k1nV0S6NhJWkhDNOJw%40mail.gmail.com > <https://groups.goog

Re: Work Opportunity

2019-01-30 Thread Roshan Shah
isit > https://groups.google.com/d/msgid/django-users/19561b48-3832-42a8-8c6d-f46e408d6074%40googlegroups.com > . > For more options, visit https://groups.google.com/d/optout. > -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contai

Re: Job Request

2019-01-25 Thread Roshan Shah
/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAMEZma9T34QG-q%2B5VGqgNW6kuQNaYK7sJRyjt7WEO86LfwCZgQ%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAMEZma9T34QG-q%2B5VGqgNW6kuQNaYK7sJRyjt7WEO86LfwCZgQ%40mai

Re: Looking for a Django Co-Founder.

2019-01-22 Thread Roshan Shah
ps://groups.google.com/d/optout. > -- -- Roshan Shah / Sr. IT Consultant techieros...@gmail.com / (519) 496-8860 This e-mail message may contain confidential or legally privileged information and is intended only for the use of the intended recipient(s). Any unauthorized disclosure, di

Re: Creation of database in real time and loading it in the DATABASES variable of Django;

2019-01-08 Thread Roshan Shah
eceived 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 django-user

Django 1.6 tests issue . Tests which are related to GET APIs run when its test class is run, however fails when all the tests are run on whole.

2017-10-14 Thread Akshay Shah
When I run the tests of my django app with the command *python manage.py test OR* *python manage.py test* all the test cases where I am fetching some data by calling the api, they seem to fail because there is no data in the response in spite of there being in the test data. The structure which

ImportError while starting django server

2017-02-02 Thread Parth Shah
*Folks,* *I was following the tutorial here and was successfully able to install django.* *I am using python 2.7.13 on OS X.* *I can verify the version number as below:* *Macitosh:project user$ python* *Python 2.7.12 (v2.7.12:d33e0c

Re: Phone number field in form/ model

2016-12-15 Thread Deep Shah
I have not tried this out but you can check this- https://github.com/stefanfoulis/django-phonenumber-field/ On Thursday, December 15, 2016 at 1:07:02 AM UTC+5:30, Lloyd Dube wrote: > > Hi, > > Has anyone captured phone number information using a Form/ModelForm > instance? I have the field as

Re: Error with Tutorial - Writing your first Django app, part 1

2016-12-09 Thread shah
Hi, I am facing the same issue with the tutorial. I have got my program correct. But after running the sever. It shows an error on chrome. Page not found (404) Request Method: GET Request URL: http://localhost:8000/polls/ Using the URLconf defined in mysite.urls, Django tried these URL patterns

Re: Django Project Structure

2016-10-27 Thread Deep Shah
I have read this, but still confused. What would be the best practices for this? On Wednesday, October 26, 2016 at 12:05:19 PM UTC+5:30, Deep Shah wrote: > > I have a django project which is a loyalty program for restaurants. The > different database tables are- Users (and extendin

Django Project Structure

2016-10-25 Thread Deep Shah
I have a django project which is a loyalty program for restaurants. The different database tables are- Users (and extending it with User Profiles), Restaurant Company (the entire chain), Branches, Offers, Points (points which users get on visiting a particular restaurant) etc. How do I structur

Re: Methods in Models

2016-10-25 Thread Deep Shah
This makes sense! Thanks! On Monday, October 24, 2016 at 1:17:26 PM UTC+5:30, Deep Shah wrote: > > What kind of methods should be part of the models and what should be in > the views? Can anyone give me an example of a method which should be in a > Model than the views file? > -

Methods in Models

2016-10-24 Thread Deep Shah
What kind of methods should be part of the models and what should be in the views? Can anyone give me an example of a method which should be in a Model than the views file? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from th

Django project structure

2016-10-24 Thread Deep Shah
I have a django project which is a loyalty program for restaurants. The different database tables are- Users (and extending it with User Profiles), Restaurant Company (the entire chain), Branches, Offers, Points (points which users get on visiting a particular restaurant) etc. How do I structur

Re: Non relational databases (MongoDB) with Django

2016-08-17 Thread Deep Shah
or that, use them as is. Way simpler than > trying to force ORM (which stands for object relational mapper) to follow > something non relational. > Also, if you're not stuck at mongodb, you may find arangodb much more > appealing and doing most things "right". > >

Non relational databases (MongoDB) with Django

2016-08-17 Thread Deep Shah
I want to use MongoDB with Django. Which are the advisable, latest and stable engines? I found https://github.com/django-nonrel/mongodb-engine which requires the non relational version of Django (https://github.com/django-nonrel/django/). But they have not updated the code since Django 1.6. --

Authentication for mobile apps

2016-04-22 Thread Deep Shah
I am new to Django. I want to know how does authentication work for mobile apps. How do I keep the user logged in? Is there any in-built way in Django to manage tokens or something similar for mobile apps? -- You received this message because you are subscribed to the Google Groups "Django use

Authentication for mobile devices

2016-04-22 Thread Deep Shah
I am new to Django. I want to know how will authentication work on mobile apps. How do I keep the user logged in on my mobile apps and not make them login every time? Is there any in-built method to save a token or something? -- You received this message because you are subscribed to the Google

Hello Everyone !

2016-02-20 Thread Parth Shah
I am new to Frameworks . All I know is Basic Python. How to get Started Please help ! -- 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...@go

Django Test Coverage

2015-05-28 Thread Dharmit Shah
Hello all, I have a django app which is full REST APIs created using Django Rest Framework. In tests.py, I am testing fthe APIs using self.client.post and self.clilent.get. I use coverage tool to figure out the test coverage but it seems to check the coverage in a way I don't really understand.

Trying out django your first app.

2015-01-01 Thread Siddharth Shah
Actually I was going through the first app example, https://docs.djangoproject.com/en/1.7/intro/tutorial03/ On this particular part I am facing problem while executing http://localhost:8000/polls/ Please find the attachment to see the exact error. -- You received this message because you are

Re: ImportError at/ No module name

2013-08-11 Thread Pranay Shah
I just want to thank everyone. I had an error "no module name image" since yesterday nite. I googled and found out that I need to install python image library. I did that. I still continued getting error. Just then I came across this post where someone was getting "no module... blog". I read it

Re: Understanding an existing big web application written in Django

2013-06-05 Thread Siddharth Shah
I think you can definitely learn from:http://dangoldin.com/2013/05/07/eighteen-months-of-django/. Lots of pointers and tips. My suggestion would be pick up a popular site Hacker News, AirBnB, Kickstarter etc and try to write a clone. Thank you, Sidharth On Thursday, June 6, 2013 5:53:06 AM

Re: Django & Ember

2013-06-01 Thread Siddharth Shah
Thank you for sharing this information. Much appreciated. On Sunday, June 2, 2013 7:00:23 AM UTC+5:30, Toran Billups wrote: > > My small software company has a team of 4 python devs and we started using > ember earlier this year (here are a few things we learned along the way) > > 1.) use a REST

Re: Increase sqlite3 database size

2013-02-18 Thread Hiral Shah
Thank you very much Mikolas and Dennis! I understand what are you trying to say but why is the data not going to the database? Regards, Hiral On Sunday, February 17, 2013 6:14:15 PM UTC-8, Hiral Shah wrote: > > Hi All, > > Thanks in advance for your help! > > I am working o

Increase sqlite3 database size

2013-02-17 Thread Hiral Shah
Hi All, Thanks in advance for your help! I am working on back-end to fill the database tables with build related information. I am using Django framework with sqlite3. Somehow I am not able to add more data in database table after certain limit. I am not getting any error but database size is

Python Django Rockstars- I need you

2012-12-18 Thread Seena Shah
I am currently urgently looking for some amazing Python Django Rockstars to join my client in Berlin. They offer great benefits and a fantastic working environment. please contact me on seena.s...@darwinrecruitment.com if you want to hear more. -- You received this message because you are sub

Ajax with Django

2010-02-04 Thread Rohan Shah
Any good documentation available on how to implement AJAX with Django ? -- Thanks and Regards, Rohan Shah ++[>>++>+++>+<<<<-] >++. >+++.---. ---.. >++. <<+. >--. ---.+++. -- You receiv

Re: django blog

2009-10-17 Thread Japan Shah
ws.comments.post_comment") > > File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", > > line 341, in reverse > >*args, **kwargs))) > > File "/usr/lib/python2.5/site-packages/django/c

Re: My Django powered website for web based learning

2009-09-28 Thread Parag Shah
Thanks Alex. I am glad you liked the course videos, I am also planning to add more videos as I find them. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Mon, Sep 28, 2009 at 4:24 PM, Alex wrote: > > Good job! Didn't have much time to check the content but the

Re: My Django powered website for web based learning

2009-09-27 Thread Parag Shah
Sorry about that. It should be accessible now: http://www.adaptivelearningonline.net -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Sun, Sep 27, 2009 at 9:55 PM, Grant Livingston wrote: > Same here.. > > > > > --~--~-~--~~---

[ANN] My Django powered website for web based learning

2009-09-27 Thread Parag Shah
: http://www.adaptivelearningonline.net I also plan to open source the code (as soon as I clean it up :-) ) -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: Saving ModelForm with commit=False seems to be generating an INSERT in the database

2009-09-22 Thread Parag Shah
ate are happening on the same transaction because of the transaction middleware I am using. Is there a good solution to this problem? -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz wrote: > >> Why is an INSERT statement being generated even though I have >

Saving ModelForm with commit=False seems to be generating an INSERT in the database

2009-09-20 Thread Parag Shah
'', '') Why is an INSERT statement being generated even though I have commit=False? The two inserts are causing an Exception which prevent the actual user data from being saved (a row in the courses_userprofile table does get created, but with all columns except the id being blank)

Re: tagging problems

2009-09-01 Thread Japan Shah
yes problem is django version missmatch. django 1.0 final and its not compatible with tagging 2.* for it you must use tagging 0.3 On Jul 26, 1:23 pm, todd12 wrote: > Hi T, > > I found this in the tagging issues from 2008 but it worked: > > if your like me then you get this message from within th

Re: html Escape

2009-08-24 Thread Parag Shah
to post comments and I don't want them to > be allowed to put html in comments. > > However I would like the to be able to use paragraph p tags and > tags but not anything other. Could someone tell me how to do this? > > Thanks > > Andrew > > > -- Thanks

Converting some objects during serialization

2009-08-05 Thread Parag Shah
t is being serialized, or alternately associate some format with the QuerySet so that it returns the date in a certain format? -- Thanks & Regards Parag Shah --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Finding a Django expert to review my code

2009-07-30 Thread Parag Shah
outcome :-) I am hoping to share what I know and also learn some new things myself. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Fri, Jul 31, 2009 at 11:51 AM, Rex wrote: > > I just created my first Django site (as an academic research project). > Now that it is

Re: Problems with mod_wsgi and django

2009-07-27 Thread Parag Shah
Thanks to everyone for your help. The problem was with permissions. Once I gave o+rx to www-data, it started working. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Mon, Jul 27, 2009 at 12:40 PM, Graham Dumpleton < graham.dumple...@gmail.com> wrote: > > >

Problems with mod_wsgi and django

2009-07-27 Thread Parag Shah
d why Apache is looking for /root/.htaccess Am I missing something in the configuration? Thanks in advance for the help. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz --~--~-~--~~~---~--~~ You received this message because you are subscrib

Re: How to make email field unique in model User from contrib.auth in Django

2009-07-21 Thread Parag Shah
Yes that is also a good idea. Validate the form with an AJAX call when the user enters the email addr (or clicks on Submit) -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Wed, Jul 22, 2009 at 11:21 AM, Andy McKay wrote: > > Use a pre-save signal, but also val

Re: How to design a new website? (about apps)

2009-07-21 Thread Parag Shah
can (as you mentioned) be a separate app as well. I am somewhat new to Django as well, so these suggestions are from my limited knowledge of Django design. -- Thanks & Regards Parag Shah http://blog.adaptivesoftware.biz On Wed, Jul 22, 2009 at 3:49 AM, Léon Dignòn wrote: > > Ok, I hav

Re: How to make email field unique in model User from contrib.auth in Django

2009-07-21 Thread Parag Shah
One thought which comes to my mind is to have a pre-save signal when a User object is saved. Though I am not sure of this is the best way. -- Thanks & Regards Parag Shah On Wed, Jul 22, 2009 at 1:03 AM, ramu...@gmail.com wrote: > > I need to patch the standard User model of contr

  1   2   >