[no subject]

2023-12-15 Thread ASHISH SONAVANE
send me update all applications Store -- 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

Re: Freelance Django and Python work

2023-06-17 Thread Ashish Rawat
Yes, i am interested in this position On Tue, Jun 13, 2023, 4:59 PM אורי wrote: > Hi, > > I'm looking for a programmer to hire as a freelancer for Django and Python > work. > > - Experience with Python and Django > - Experience with open source > - Committed to the Django repository on GitHub -

Re: associate Developers for Google

2023-06-17 Thread Ashish Rawat
Yes i am looking On Sat, Jun 17, 2023, 7:39 PM Lucifer Black wrote: > Is there anyone that wants a job at google developer at home looking for > three people > > > Get Outlook for Android > > -- > You received this message because you are subscribed to the Google Groups

Re: ImportError: cannot import name 'employees' from 'rest_framework'

2022-09-01 Thread Ashish Rawat
There is error in line number 3 you are importing the module from restapi but you should take that from model On Thu, Sep 1, 2022, 7:30 PM Pooja Kumari wrote: > Can anyone explain this error? > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

Shell script dynamic execution from app

2020-07-25 Thread ashish goyal
those scripts are scheduled with control-m. I wanted to have a dynamic design of those scripts so that this all could be possible. Any leads? Thanks Ashish -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Django deployment on linux rhel 7

2020-07-12 Thread ashish goyal
Hi, Anyone done django deployment on linux rhel 7 and bootstrap working fine with below command python manage.py runserver Need help Thanks Ashish -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: Static not working on unix while working on windows

2020-07-08 Thread ashish goyal
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 wrote: >> Hi All, >> >> I have created a django

Re: Static not working on unix while working on windows

2020-07-07 Thread ashish goyal
> On 08-Jul-2020, at 00:54, Avi shah wrote: > >  > > Hi Ashish , > I had the same error while deploying my django on iis windows server > just copy paste the below code into your settings.py and you will have no > issues > And i have done for js , you can do it for cs

Re: Static not working on unix while working on windows

2020-07-07 Thread ashish goyal
Hey musty, No those basic things are working already on windows. But not on linux. Once hosted css is not available, even after i did collectstatic in static folder but still css n js are not loading with static > To unsubscribe from this group and stop receiving emails from it, send an >

Re: Static not working on unix while working on windows

2020-07-06 Thread ashish goyal
I am using same but still css is not available when i am clicking on css file link from inspect. Is it because i have not configured nginx as i am just running app from runserver on unix machine. Was working fine on windows. No change Thanks Ashish > On 07-Jul-2020, at 00:11, Vishesh Man

Static not working on unix while working on windows

2020-07-06 Thread ashish goyal
Hi All, I have created a django app on windows and have used bootstrap navbar n other functions which are working good on windows. Same files I have imported on unix server then i am able to get all details but getting issue with css and js files saying below error Refused to apply style from

change charfield to list and create insert form

2020-06-27 Thread ashish goyal
charfield whereas i wanted to have drop down with fixed values. Can someone guide me on how to put drop down in form with charfield, i can put up fixed value where use any of those values and submit -- Thanks Ashish -- You received this message because you are subscribed to the Google Groups "D

Oracle 12.0.1 admin not working with django 3+

2020-06-23 Thread ashish goyal
existing code? Thanks Ashish -- 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

Django_admin_log table is error with migrate and giving ORA-00955

2020-06-20 Thread ashish goyal
I have been trying to do below steps and all the migrations except my custom apps are getting failed with ORA-00955 error saying name is already used by an existing object. When i search in oracle dba_tables i don't find DJANGO_ADMIN_LOG table i have executed below steps which is failing:

Re: Django makemigration polls error

2018-07-26 Thread Ashish Kumar
I'm using the latest version m8 On Wednesday, July 25, 2018 at 5:50:24 PM UTC+5:30, Okware Aldo wrote: > > I think he should share screenshot of his setting.py file, but from what I > can see -- if he is running django 1.10 and above apps should be 'polls' > not *'polls.apps.PollsConfig'* > >

Re: Django makemigration polls error

2018-07-26 Thread Ashish Kumar
thanks man. that was the mistake i did. On Wednesday, July 25, 2018 at 4:54:09 PM UTC+5:30, theAloneOne wrote: > > You may have missed a comma after *'polls.apps.PollsConfig'* in your > settings.py file in the *INSTALLED_APPS* list so check it again and you > may not be using the same

Django makemigration polls error

2018-07-24 Thread Ashish Kumar
I am trying to follow the latest Django tutorial at the documentation and I faced the following error when I enter python manage.py makemigrations polls Traceback (most recent call last): File "manage.py", line 15, in execute_from_command_line(sys.argv) File

Adding Junk code to your django project

2018-01-11 Thread ashish . bhatia
Hello, I have a requirement which says that the user should not be able to read/modify my code.I thought to add some junk code to the project is it possible?? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

encrypt my django code and still be able to run it

2018-01-11 Thread ashish . bhatia
Hi, Is it possible to encrypt my complete Django project and still be able to run it. -- 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

Regex Validators doesn't validate while working in a shell

2016-09-12 Thread ashish . goyal
I've configured user's username field in following way username = models.CharField( _('username'), max_length=30, unique=True, help_text=_('Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.'), validators=[

Writable Nested Serializers

2016-01-15 Thread Ashish Gupta
I am trying to use Writable Nested Serializer with AngularJS. I have image field in the related model. So its something like this: class TrackSerializer(serializers.ModelSerializer): class Meta:

Re: Templates couldn't be found after a new package installed

2015-06-24 Thread Ashish Khatkar
Can you post your urls.py, views.py and settings.py so that we can know what is the exact issue here ? On Wednesday, June 24, 2015 at 4:35:49 PM UTC+5:30, entheo wrote: > > Just received the message after run mysite sever to which a package > called 'django-polls' installed according to

Issue with mongo in Django

2015-06-23 Thread Ashish Khatkar
Hi, Today I was trying to do user authentication with Django + MongoDB. I was constantly getting "Metadict object has no attribute pk" error. I searched for the fix but nothing helped. In the end, I read the implementation of login function and changed request.session[SESSION_KEY] =

OAuth Authentication

2015-06-19 Thread Ashish Gupta
I an using Django OAuth Toolkit and Django Rest for OAuth authentication for mobile app. For accessing any protected resource client id and secret of the app is required . Where should I store client secret. Storing in APK is unsafe as it can be decompiled. Even obfuscation can be reverse

error while using ActionForm with django-grappelli

2015-06-09 Thread Ashish Gupta
I am using Django 1.7.6 and django-grappelli 2.6.4 I have written custom admin actions and Action form which were working well in Django admin. But in grappelli when i select a admin action from the dropdown the pages reloads before i can select the values from the ActionForm in admin panel.

run MQTT server on celery

2015-05-06 Thread Ashish Verma
Hi, I want to run MQTT server in celery and send it output to make Django app.. but I am not able to run server on celery,Can anybody help me,...Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

First app using mouse click event

2014-08-22 Thread ASHISH KUMAR GUPTA
to a simple example which can explain how to do this? Many thanks, Ashish -- 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-user

New to Django

2014-05-10 Thread ashish garg
Hey I am new to Django.I have heard a lot about the powerful features it has.I want to learn Django. Any sort of help would be really appreciated. How can i get started? I am using Django 1.6 and python 2.7. How can i get used to it's concepts to gain in-depths in short span of time? -- You

How to switch json context between two pages in djanog

2014-03-31 Thread Ashish Kumar
I have two html pages with different json context ,I have templates for both pages which contains a script which on loading the pages individually loads the context into the list.Now i want to develop a toggle button which onclicking changes the context ,is there any way i can do this with ajax

How to display file extension in django template ?

2014-02-07 Thread Ashish Tiwari
It's a simple question but i'm not able to find easily. How can I display the file extension of uploaded file in template ? ex : uploaded-filename.jpeg {{file.}} will display "jpeg" in template. -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Django back button issue after log-out

2012-12-17 Thread Ashish Sable
, ke1g wrote: > > > > On Mon, Dec 17, 2012 at 5:14 AM, Ashish Sable > <ashish...@gmail.com > > wrote: > >> >> I have written simple registration(login,logout) Django apps. >> when i click on logout and then back button from browser >> it shows me

Django back button issue after log-out

2012-12-17 Thread Ashish Sable
I have written simple registration(login,logout) Django apps. when i click on logout and then back button from browser it shows me previous page. it should redirect me to login page. please help -- You received this message because you are subscribed to the Google Groups "Django users"

Creating a torrent file & associated tracker through a django web app

2012-11-21 Thread ashish makani
inks will be greatly appreciated Thanks a ton, cheers ashish 1. http://mktorrent.sourceforge.net/ 2. http://www.robertnitsch.de/projects/py3createtorrent -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this disc

Re: Print html the normal way

2012-10-05 Thread Ashish Jain
Hi, Thanks a ton!! using mark_safe() worked perfectly. - Regards Ashish On Friday, 5 October 2012 14:10:31 UTC+5:30, Tom Evans wrote: > > On Fri, Oct 5, 2012 at 9:20 AM, Ashish Jain > <ashishj...@gmail.com> > wrote: > > Hi, > > > > I wrote a simple f

Print html the normal way

2012-10-05 Thread Ashish Jain
Hi, I wrote a simple filter as: @register.filter() def html(value): return 'Check' when I use this filter in my template, it displays html as: Check I want to display as: Check am I missing something. - Thanks for your help Ashish -- You received this message because you

Re: Add your own template library

2012-10-02 Thread Ashish Jain
And in settings.py, I have: TEMPLATE_TAGS = ( 'templatemyweb.tags.repeat', ) with which I am using this code snippet, * http://djangosnippets.org/snippets/342/* * <http://djangosnippets.org/snippets/342/>* - Regards Ashish On Monday, 1 October 2012 18:01:48 UTC+5:30, Javier Guerra

Re: Add your own template library

2012-10-01 Thread Ashish Jain
traightway the repeat can be used. - Thanks On Monday, 1 October 2012 14:13:28 UTC+5:30, Tom Evans wrote: > > On Mon, Oct 1, 2012 at 5:59 AM, Ashish Jain > <ashishj...@gmail.com> > wrote: > > Hi, > > > > Yes it do have __init__.py > > > > I have cr

Re: Add your own template library

2012-10-01 Thread Ashish Jain
y has tags 'repeat' but, t = django.template.Template('{% load repeat %}') throws the same error. - Regards Ashish On Monday, 1 October 2012 10:29:44 UTC+5:30, Ashish Jain wrote: > > Hi, > > Yes it do have __init__.py > > I have created a simple project of template tags and have installed it as &

Re: Add your own template library

2012-09-30 Thread Ashish Jain
Hi, Yes it do have __init__.py I have created a simple project of template tags and have installed it as a python package with setup.py. After which I am referring it into my website. - Thanks for reply On Monday, 1 October 2012 09:45:46 UTC+5:30, Laxmikant Gurnalkar wrote: > > Hi

Add your own template library

2012-09-30 Thread Ashish Jain
django.templatetags.repeat,django.contrib.staticfiles.templatetags.repeat Any help would be appreciated. - Thanks Ashish -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/

Re: Admin User registration problem...

2011-06-16 Thread ashish tiwari
thank you... -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/T4B46pv50HwJ. To post to this group, send email to django-users@googlegroups.com. To

Admin User registration problem...

2011-06-16 Thread ashish tiwari
hi friends, i developed an application in django-nonrel with appengine. i'm using django forms for user registration. forms.py class RegistrationForm(forms.Form): username=forms.CharField(label=u'Username',max_length=30) email=forms.CharField(label=u'Email')

how to configure mongoDB in Django?

2011-04-29 Thread ashish tiwari
Hey friends, i used Django with Sqlite3, I'm thinking about to use MongoDB as backend. but i don't no how to configure it, and which packages need to configure mongoDB in Django? Best Regards --ashish -- You received this message because you are subscribed to the Google Groups "Django

Re: site styling works with development server but not apache

2011-02-17 Thread Ashish Agarwal
Progress!! I had to add Alias /adminmedia "/usr/lib/pymodules/python2.6/django/contrib/admin/media" and set ADMIN_MEDIA_PREFIX to the same url /adminmedia/ I don't understand everything yet, and will probably have more problems soon. But at least I got this far. Thanks for all the help!! On

Re: site styling works with development server but not apache

2011-02-17 Thread Ashish Agarwal
> Order allow,deny > Allow from all > > > MOD_PYTHON > >SetHandler None > > > If this doesn't work perhaps you shoud could paste your VirtualHost > configuration. > > Rgds, > Marcos > > > > On Thu, Feb 17, 2011 at 2:

Re: site styling works with development server but not apache

2011-02-17 Thread Ashish Agarwal
in the Alias directive above? Thank you. On Thu, Feb 17, 2011 at 10:30 AM, Mike Ramirez <gufym...@gmail.com> wrote: > On Thursday, February 17, 2011 07:14:16 am ashish wrote: > > > Hi all. I followed the tutorial to setup a basic django site and run > > > it with the dev

site styling works with development server but not apache

2011-02-17 Thread ashish
Hi all. I followed the tutorial to setup a basic django site and run it with the development server. Everything looks fine. Then, I configured to use apache. Everything seems to work except the styling. The login and admin pages have no formatting. On IRC I was told the issue is that the

Re: Caching middleware causes default page caching

2010-11-26 Thread Ashish Gupta
yes, I mistakenly thought I need middleware to cache db objects. I guess following is enough for my needs, CACHE_BACKEND = 'locmem://' from django.core.cache import cache and cache.set('add_key', 'Initial value') >>> cache.add('add_key', 'New value') >>> cache.get('add_key') thanks On Fri,

dump data using json

2009-08-21 Thread ashish tiwari
class Item so i want to dump all data which is present in class "Person" how can i "dumpdata" from my app "class Person " in " .json " fromat and "loaddata" thank you... - ashish --~--~-~--~~~---~--~--

ashish tiwari wants to chat

2009-05-29 Thread ashish tiwari
--- ashish tiwari wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-d1daa37620-00464c385d-2a1eb8c3350f9891 You'll need

Re: Problem with performance on a django site

2009-05-29 Thread ashish tiwari
Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to

Re: Problem with performance on a django site

2009-05-29 Thread ashish tiwari
i m ashish, i m new for django... i have a problem how can i delete my table from database using SQLite3 how can i get the db file on command shell of sqlite... how can i drop the table. please give me the answer... from novice. thank you

Re: Problem with performance on a django site

2009-05-29 Thread ashish
i m ashish, i m new for django... i have a problem how can i delete my table from database using SQLite3 how can i get the db file on command shell of sqlite... how can i drop the table. please give me the answer... from novice. thank you

Re: Problem with performance on a django site

2009-05-29 Thread ashish
i m ashish, i m new for django... i have a problem how can i delete my table from database using SQLite3 how can i get the db file on command shell of sqlite... how can i drop the table. please give me the answer... from novice. thank you

Re: Problem with performance on a django site

2009-05-29 Thread ashish
hi, i m ashish, i m new for django... i have a problem how can i delete my table from database using SQLite3 how can i get the db file on command shell of sqlite... how can i drop the table. please give me the answer... from novice. thank you

ashish tiwari wants to chat

2009-05-23 Thread ashish tiwari
--- ashish tiwari wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-d1daa37620-797e12f2ba-bbc006273b9d2d26 You'll need

ashish tiwari wants to chat

2009-05-23 Thread ashish tiwari
--- ashish tiwari wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-d1daa37620-dc0367129f-044c014942754058 You'll need

ashish tiwari wants to chat

2009-05-23 Thread ashish tiwari
--- ashish tiwari wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-d1daa37620-3180f48683-516d3374db6ca61b You'll need

how to delete table from database?

2009-05-23 Thread ashish tiwari
i create the tables in models.py i have the problem to delete table from databasei m using SQLITE3 any one give me the code to how delete the table from database... thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: password_change - specify minimum password length

2009-05-22 Thread ashish tiwari
> > hey sum time i get the problem when i use django the problem is my DATABASE is getting locked... what is this .i dont know --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: can't create django project

2009-05-21 Thread ashish
if ur using the Linux u can get the "django-admin.py" on ur command shell in any dirctry eg.. ash...@pylone$ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Announcing release of WoodRanch Agile Projects written in Django

2009-01-22 Thread Ashish Gupta
developing in Django and we are glad we choose Django as the framework. Thanks to all the people from Django community who participated in our Beta when we announced it on this list in October, 2008. Thanks to all the awesome Django developers and Django community for their help. Ashish Gupta CTO

Re: Where are all the Django jobs?

2009-01-10 Thread Ashish
My opinion, RoR was just right there when people were getting frustated with java and perl and it was very well marketed hence much wider adoption. now Ruby has another framework - MERB which is gaining traction. Django is like RoR + MERB + more based on presentations I have seen on RoR and

Same form with dropdown on all pages

2009-01-04 Thread Ashish
I want to have a common html form with only a dropdown and a submit button on all pages. It will placed in one corner and user can select say a particular account from the drop down and press submit. I will save the selection in session. All screens then will display the data related to that

Announcing Agile Project Management Tool developed in Django

2008-10-16 Thread ashish
in Django. It is a pleasure developing in Django. Thanks to all the Django developers and the Django community. thanks Ashish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to