Drawing with Django

2016-11-13 Thread Andrew Stringfield
hello all, I am interested in being able to draw on a Django view. I have been reading up some on how people draw in Html and it seems that the tag seems to a good start. Apparently I have to do some java scripting as well. What I envision is that I have a background image and then my

Re: Drawing with Django

2016-11-13 Thread Andrew Stringfield
y the image. Get all the annotation for the image, > display dot at the position of each annotation, display the text on > mousehover. Or directly on the image if the image is huge. > > Good luck > > 2016-11-13 21:48 GMT+01:00 Andrew Stringfield >: > > hello all, >

Scanning for Wifi

2015-12-28 Thread Andrew Stringfield
Hello all, I saw a really cool feature that D-link wireless cameras have. First you physically hook up the camera to the LAN and then access the camera via web interface. While on the web interface you can scan for your wireless network and connect the camera, wirelessly, to your networ

Running Python3 code and placing results in a view

2016-01-03 Thread Andrew Stringfield
Hello all, I am interested in running the code of: #!/usr/bin/python3 from wifi import Cell, Scheme ssid = [cell.ssid for cell in Cell.all('wlan0')] print(ssids) with a view in Django and the results displayed in a drop down list. Here is the information about the WIfi module that I am us

Patreon and Django-AllAuth Integration

2020-10-26 Thread Andrew Stringfield
Hello all, I am trying to use Patreon's API Version 2 with Django 3.1. I read: https://docs.patreon.com/#third-party-libraries and found that Patreon supported the django-allauth library. I installed the library by following the instructions of: https://django-allauth.readthedocs.io/en/l

Re: Patreon and Django-AllAuth Integration

2020-10-26 Thread Andrew Stringfield
> EXACTLY what you are getting a response from. > > Do you want to use Patreon as a login account provider or do you want to > do something else? > > Regards, > > Andréas > > > Den mån 26 okt. 2020 kl 20:47 skrev Andrew Stringfield < > thefund...@gmail.com&

Re: Patreon and Django-AllAuth Integration

2020-10-28 Thread Andrew Stringfield
t 9:28:38 AM UTC-4 Ryan Nowakowski wrote: > On Mon, Oct 26, 2020 at 12:16:03PM -0700, Andrew Stringfield wrote: > > Hello all, > > > > I am trying to use Patreon's API Version 2 with Django 3.1. I > > read: https://docs.patreon.com/#third-party-libraries and found t

Re: Patreon and Django-AllAuth Integration

2020-10-28 Thread Andrew Stringfield
I almost forgot. I have checked my settings in Django and Patreon and the URL redirect matches for all that I can see. I have an idea to try and use the testing framework to see what values I am passing to Patreon. On Wednesday, October 28, 2020 at 7:53:42 AM UTC-4 Andrew Stringfield wrote

Re: Patreon and Django-AllAuth Integration

2020-10-28 Thread Andrew Stringfield
values I am passing to Patreon. >> >> On Wednesday, October 28, 2020 at 7:53:42 AM UTC-4 Andrew Stringfield >> wrote: >> >>> Sorry for the late reply. I found a youtube video of: >>> https://www.youtube.com/watch?v=-TUEM2NCuVE and I followed the >>

Re: Patreon and Django-AllAuth Integration

2020-10-30 Thread Andrew Stringfield
You guys are awesome! I will try these solutions later this evening. On Wednesday, October 28, 2020 at 11:30:56 PM UTC-4 oladipo...@gmail.com wrote: > Hello Sir, > You need to set the LOGIN_REDIRECT_URL in your settings.py file. > > On Mon, Oct 26, 2020, 8:47 PM Andrew Stringfie

Directly Accessing Dictionary Values

2019-11-19 Thread Andrew Stringfield
Hello all, I am trying to access Dictionary values directly. Here is my view: def unique_key_query(request, unique_key): unique_key_object = simpleformmodel.objects.all().filter(id=unique_key) context = {'unique_key_object': unique_key_object} return render(request,

Re: Directly Accessing Dictionary Values

2019-11-20 Thread Andrew Stringfield
}} {% endfor %} and just have: {{ unique_key_object.filename }} On Tuesday, November 19, 2019 at 10:59:07 PM UTC-5, Suraj Thapa FC wrote: > > Return the unique key object... Like > return render(request, 'abc.html',unique_key) > > On Wed, 20 Nov 2019, 9:18 am And

Re: Directly Accessing Dictionary Values

2019-11-20 Thread Andrew Stringfield
Okie-dokie. Thank you. -- 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 http

Re: Directly Accessing Dictionary Values

2019-11-20 Thread Andrew Stringfield
I have not! I did see something about that on a website. Would it go something like: dictionary_name.fieldname.0 ? I will try it out later today. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivi