Testing Django Admin with Selenium

2017-04-16 Thread Derek
Python 3.5; Django 1.10.7 I am struggling to get access to the admin pages via Selenium. I assume the issue is with the user login not being set properly - I don't want to go via the login page/form every time, so was attempting the session approach. Below is the code that shows the problem. Th

Error:Microsoft visual c++ 14.0 is required

2017-04-16 Thread Ronnie
I have installed Microsoft visual c++ 14.0 then also it is showing error as Microsoft visual c++ 14.0 is required. Please help me.I need a solution... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Re: safe perfect and reliable app for verification email

2017-04-16 Thread Willian Will
Hey, you can user javasript for that, thus You dont need use ajax or anything for retrieve confirmation about email is correct or no , but you need confirm about the email already exists in database ? sábado, 15 de Abril de 2017 às 09:22:21 UTC-3, shahab emami escreveu: > > hello > I want to ve

Django forks

2017-04-16 Thread jpic
Hello everybody ! Anybody maintaining a Django fork and open for contributions ? I want to fix problems that have been recurrent for me over the last decade, and that Django doesn't want to fix for ideological reasons. So, if I don't find a fork that's open for contributions I will make my own.

Re: Error:Microsoft visual c++ 14.0 is required

2017-04-16 Thread Willian Will
hey , download and install that https://www.microsoft.com/en-us/download/details.aspx?id=48145 domingo, 16 de Abril de 2017 às 09:35:06 UTC-3, Ronnie escreveu: > > I have installed Microsoft visual c++ 14.0 then also it is showing error > as Microsoft visual c++ 14.0 is required. Please help me.

Raspbbery PI - PI3D - Apollo Soyuz 3d model to Freeboard dashboard node red

2017-04-16 Thread Elad Barshan
hello, i am in search for a solution to display real time PI3D model for pre-designed Apollo-Soyuz 3D model moving real time on 3 Axes according to Gyro installed on top of the RPI called Sense Hat on a Freeboard Dashboard (powered by node red) widget as far i understand, the only way to it is

Re: Show HTML tags in list in Django template

2017-04-16 Thread ludovic coues
I don't understand where the [] symbol in your example come from. Have you tried to get a detailed view of tags_hx, with {{ tags_hx|pprint }} ? 2017-04-15 22:40 GMT+02:00 Moreplavec : > Greetings, > > i'm trying to parse HTML website and present same basic info about it. I'm > using BeuatifulSoup4

take select request from django from

2017-04-16 Thread Xristos Xristoou
hello i have create a select django form with list of images for per user. How to take that select request in my views.py ? i have success only to create correct that select list but i need take that select request but i dont know how. models.py class MyModel(models.Model): user = model

Mysql/Models

2017-04-16 Thread alkhairohr
Hello everyone, Again, I'm super new to django so please bare with me. I have just connected my mysql database to my django project in settings.py. I then manually made models for the tables in my database. I originally used inspectdb to do this, but I was getting a bunch of errors. I decided

Re: Mysql/Models

2017-04-16 Thread m712 - Developer
On Apr 17, 2017 12:57 AM, alkhair...@mymail.vcu.edu wrote: > > I am not exactly sure how to do this, so any help would be great. The shell is just a Python REPL, you can run any Python code in it. Consider: >>> from yourapp import models >>> models.YourModel.objects.first() >Further, am I missing

Creating multiple objects with one request in Django Rest Framework

2017-04-16 Thread Aamu Padi
I am using Django as the backend server and Vue.js for the front end Movie app. I have a Ticket model class MovieTicket(models.Model): show = models.ForeignKey(Show) seat = models.ForeignKey(Seat) user = models.ForeignKey(User) purchased_at = models.DateTimeField(default=timezone.

Re: Creating multiple objects with one request in Django Rest Framework

2017-04-16 Thread m712 - Developer
Hi, Take a look at https://docs.djangoproject.com/en/1.11/topics/db/examples/many_to_many/ On Apr 17, 2017 8:19 AM, Aamu Padi wrote:I am using Django as the backend server and Vue.js for the front end Movie app.I have a Ticket modelclass MovieTicket(models.Model): show = models.ForeignKey(Show