Re: My first project

2024-01-06 Thread Daniel Martinez
Hello Om khade
Thank you so much for your feedback I was able to resolve and fix the
security question in the recovery password
and I continue to working in the project.
Thank you again for your time and help
Sincerely
Daniel Martinez

On Sat, Dec 16, 2023, 6:44 AM Om Khade  wrote:

> Hi Daniel,
>
> Nice app. I think you also need to show security questions after we click
> on forget password.
>
> I have attached screenshot for your reference.
>
> Thank you
> Om khade
>
> On Sat, 16 Dec, 2023, 11:39 Daniel Martinez,  wrote:
>
>> Hello everyone,
>>
>> I'm Daniel, a recent college graduate as of July 2023. Since then, I've
>> been actively seeking job opportunities as a Django developer. During my
>> job search, I took the initiative to start my first project in Django. I'm
>> excited to share with you my debut as a full-stack developer: a telehealth
>> app that leverages AI to predict diseases.
>>
>> The app https://telehealthconnex.com is designed to enhance healthcare
>> delivery by integrating advanced AI algorithms. I would greatly appreciate
>> any feedback or suggestions you might have!
>>
>> Thank you for your support!
>>
>>
>> --
>> 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/CANp4oev4DbNi7cRpvsTVTFhyCq-ozxmfL9gMUpxQGMwfHam1kg%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/CAMaQUUqXxnK9jJf-Sg1CA6TuJkN2DsqtwMcwG6ZJOdiia6NRfg%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/CANp4oeu09KxcjrPKphBgk50%3Da210UgLG93Y%2BkXKpvXE6Zhp5Zg%40mail.gmail.com.


Re: My first project

2024-01-05 Thread kpogomou Raphael
Un très bon design...Coté focntionalité j'ai pas trop exploré mais je
trouve waouh .
Félicitation


Le sam. 16 déc. 2023 à 20:44, Om Khade  a écrit :

> Hi Daniel,
>
> Nice app. I think you also need to show security questions after we click
> on forget password.
>
> I have attached screenshot for your reference.
>
> Thank you
> Om khade
>
> On Sat, 16 Dec, 2023, 11:39 Daniel Martinez,  wrote:
>
>> Hello everyone,
>>
>> I'm Daniel, a recent college graduate as of July 2023. Since then, I've
>> been actively seeking job opportunities as a Django developer. During my
>> job search, I took the initiative to start my first project in Django. I'm
>> excited to share with you my debut as a full-stack developer: a telehealth
>> app that leverages AI to predict diseases.
>>
>> The app https://telehealthconnex.com is designed to enhance healthcare
>> delivery by integrating advanced AI algorithms. I would greatly appreciate
>> any feedback or suggestions you might have!
>>
>> Thank you for your support!
>>
>>
>> --
>> 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/CANp4oev4DbNi7cRpvsTVTFhyCq-ozxmfL9gMUpxQGMwfHam1kg%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/CAMaQUUqXxnK9jJf-Sg1CA6TuJkN2DsqtwMcwG6ZJOdiia6NRfg%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/CA%2BuxXhgeBSB2%2B8uvBViqa3DC3g67HRd8DW6gse9EEYAC7%2BMGzA%40mail.gmail.com.


Re: My first project - URL issue?

2017-11-02 Thread Tony King

>
> Ok, well I've solved my immediate problem but clearly need to learn more 
> about JavaScript, jQuery and CSRF tokens.
>

But for anyone with a similar URL issue, I did the following;

Added an appname setting to my urls.py
appname = 'shopfront'
urlpatterns = [
url(r'^$', views.index, name='index'),
url(r'^launch_app/$', views.launch_app, name='launch'),
]

 Modified the $.post function to use the URL name mapping which as I 
expected meant I now have single function for handling the application 
launch.
{% for my_apps in my_apps_list %}
{{ my_apps.app_name }}

$("#app{{ forloop.counter }}").click( function() {
$.post("{% url 'launch' %}", {appname: '{{ my_apps.app_name }}'}, function 
() {});
});

{% endfor %}

 Initially this moved me onto CSRF token errors but having temporarily 
> disabled this, my function has been executed.  Onto the next issueCSRF 
> tokens..
>

-- 
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 post to this group, send email to 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/82055563-01b3-4f46-a519-a1c5e15a1006%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.