Looking for angular-django developers

2020-07-08 Thread maninder singh Kumar
Dear all,

There is a requirement for angular-django developers.  Experience 1-3
years.  Post your resumes if interested to maninder.s.ku...@gmail.com

regards

Maninder Kumar
about.me/maninder.s.kumar


-- 
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/CABOHK3TLumkPwHrQWXxvs8cKcsYqzrbX5p_%3DkP6N%2BD2UZ4OAXw%40mail.gmail.com.


Re: connection queries_log when DEBUG is False

2020-07-08 Thread Dan Davis
Answering my own question:

The queries_log is cleared when Django begins processing a new request in 
django/db/__init__.py:

# Register an event to reset saved queries when a Django request is started.
def reset_queries(**kwargs):
for conn in connections.all():
conn.queries_log.clear()


signals.request_started.connect(reset_queries)


On Wednesday, July 8, 2020 at 7:03:48 PM UTC-4, Dan Davis wrote:
>
> This has to do with Django internals, but is nonetheless a user question.
>
> Various packages force_debug_cursor as illustrated in  
> https://www.webucator.com/blog/2015/08/python-clocks-explained/.
> Other packages monkey patch the cursor wrapper to be used.
>
> Does Django clear connection.queries_log after each request, or only if 
> the connection is cleaned up?
>
> Thanks, anyone,
>
> -Dan
>

-- 
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/b1223c3d-7a20-41a9-85f0-04ce06d87cf9o%40googlegroups.com.


connection queries_log when DEBUG is False

2020-07-08 Thread Dan Davis
This has to do with Django internals, but is nonetheless a user question.

Various packages force_debug_cursor as illustrated in  
https://www.webucator.com/blog/2015/08/python-clocks-explained/.
Other packages monkey patch the cursor wrapper to be used.

Does Django clear connection.queries_log after each request, or only if the 
connection is cleaned up?

Thanks, anyone,

-Dan

-- 
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/3325c5b4-8a2e-4db3-9d13-9ca6c7f93d82o%40googlegroups.com.


Re: transforming form input

2020-07-08 Thread Benjamin Schollnick
What I generally do is use https://pypi.org/project/nameparser/

While Clive is correct, I haven’t seen name parser fail at breaking it apart 
correct so far.

- Benjamin



> On Jul 8, 2020, at 6:43 PM, Clive Bruton  wrote:
> 
> 
> On 7 Jul 2020, at 22:58, Kai Kobschätzki wrote:
> 
>> I render one input field surname. And if the user writes one string in
>> the input field it should be saved to surname (so forename is None). If
>> the user writes two strings (separated through a white space) than the
>> first part should be saved to forename and the second one to surname
>> (and perhaps I want to make some string manipulation further).
> 
> This isn't a "safe" way of delineating forename/surname. It isn't that 
> uncommon for people to have unhyphenated compound surnames, eg:
> 
>Bruce Smith Jones
> 
> To see the confusion this may cause:
> 
> https://en.wikipedia.org/wiki/Arthur_Conan_Doyle
> 
> It is better to ask for the forename input separately, or at least give the 
> user the option to override your decision.
> 
> 
> -- Clive
> 
> -- 
> 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/E644135A-7C74-4689-B3CB-6AA03224AC84%40indx.co.uk.

-- 
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/2B6C4AC8-1AE2-459D-9ED1-B5F954E9BD60%40schollnick.net.


Re: transforming form input

2020-07-08 Thread Clive Bruton



On 7 Jul 2020, at 22:58, Kai Kobschätzki wrote:


I render one input field surname. And if the user writes one string in
the input field it should be saved to surname (so forename is  
None). If

the user writes two strings (separated through a white space) than the
first part should be saved to forename and the second one to surname
(and perhaps I want to make some string manipulation further).


This isn't a "safe" way of delineating forename/surname. It isn't  
that uncommon for people to have unhyphenated compound surnames, eg:


Bruce Smith Jones

To see the confusion this may cause:

https://en.wikipedia.org/wiki/Arthur_Conan_Doyle

It is better to ask for the forename input separately, or at least  
give the user the option to override your decision.



-- Clive

--
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/E644135A-7C74-4689-B3CB-6AA03224AC84%40indx.co.uk.


How to access custom template when using auth_views?

2020-07-08 Thread Developer mate
I am having difficulty to access my custom template when I tried to logout 
or password_change and I redirect to django built-in template. Only login 
is working fine with my login custom template.Can anyone help me 
please.Thanks
Here is my code urls.py 


from django.urls import path
from django.contrib.auth import views as auth_views

from . import views

urlpatterns=[

#path('login/',views.user_login,name='login'),
path('',views.dashboard, name='dashboard'),
path('login/',auth_views.LoginView.as_view(),name='login'),
path('logout/',auth_views.LogoutView.as_view(template_name=
'registration/logged_out.html',next_page=None),name='logout'),
#change password url
path('password_change/',auth_views.PasswordChangeView.as_view(
template_name='registration/password_change_form.html'), name=
'password_change'),


]

-- 
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/6e0e785e-52ad-468d-9f51-67cd1376c1f4o%40googlegroups.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Karan Sahu
Hi Ajit,
Karan here, have 4+ years of experience to work as a Django Developer.

Yes I am interested to work on this.

Let me know when you are available so we can schedule a meeting on Zoom.

Best,
Karan

On Wed, Jul 8, 2020 at 3:12 PM Ajeet Kumar Gupt 
wrote:

> Dear Team,
>
> I require Django programmers for an HR portal like leave request, HRMS.
>
> *System Requirements:*
>
> *1. Main Database :* Main app only for the authentication purpose and
> employee information take it from the oracle ebs system by API.
>
> *2. Leave Application System:* User login and validate details from the
> main app point no.1 apply the leave and send for the approver with history
> details
>
> *3. SCR application :* Here also a  approval and rejection process with
> customized notification based on company profile.
>
> *Note:* Single Sign On and single Employee Information no need to create
> in every app for the user profile. I need to create the only Main App /
> Main Database.
>
> Any person have interested please let me know and give me the demo on zoom
> meeting as soon as possible.
>
>
>
> *Thanks & Regards*
> Ajit
>
> --
> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CAOWRdhCeGoaZK8rSX53mKx0ZNrygcbhDKbirWV5BOy0Z5iPUsw%40mail.gmail.com.


Re: how to change the format of datetimefield model

2020-07-08 Thread oba stephen
See if this might help

https://blog.ipswitch.com/date-formatting-in-python#:~:text=To%20do%20that%2C%20I'd,day%2C%20month%20and%20year%20is.

see full documentation here
https://docs.python.org/3.4/library/datetime.html#strftime-and-strptime-behavior

On Wed, Jul 8, 2020 at 5:01 PM Chander shekhar  wrote:

> my default date time format is something like 2018-07-01
> I want to change it like 01-01-2018
> Can any one help me in finding 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 django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e5e0091d-425c-43d1-aa53-c16cabf5fe0bo%40googlegroups.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/CAAJsLnpcvfqecu0-CUoPW30hTL5NBzpkLLq3ynxwCgLOqbE7_g%40mail.gmail.com.


Re: Is there a better way to change the default server port?

2020-07-08 Thread Luciano Martins
python manage.py runserver localhost:5000

Em quarta-feira, 8 de julho de 2020 12:56:58 UTC-3, Kshitij Kotasthane 
escreveu:
>
> I recently started using django and because port 8000 on my PC was already 
> occupied, I had to modify the runserver.py file directly to start on 
> another port. By default, shouldn't there be an option in manage.py or 
> settings.py to modify the port to start the test server on? Or am I missing 
> something?
>
> Because this is very inconvenient as well,
>
> python manage.py runserver 5000
>

-- 
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/b0b77299-ed6e-4dcf-984e-79a52ca8e332o%40googlegroups.com.


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 
> wrote:
>
>> 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  because its MIME type ('text/html') is
>> not a supported stylesheet MIME type, and strict MIME checking is enabled
>> angular*
>>
>> I am using below script in windows which is working in windows but not on
>> unix
>>
>> *{ % load static %}*
>> *> 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/D45C33B1-949B-4BBE-8338-8982F2A246BF%40gmail.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%2BTqRsvCq0A7GuLyRADscU5%2BQOP4LNbYs-0BWCJhvjNpU_NUUQ%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/BBFCCCD9-7DF9-43C6-B82A-6C3BED03DD46%40gmail.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/CALa7AFP5VH2_zs%2B%3DB0Y42bts1T3MzuKZ5bawm29%3DQgqWUy69LQ%40mail.gmail.com.


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 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  because its MIME type ('text/html') is not 
>> a supported stylesheet MIME type, and strict MIME checking is enabled angular
>> 
>> I am using below script in windows which is working in windows but not on 
>> unix
>> 
>> { % load static %}
>> > 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/D45C33B1-949B-4BBE-8338-8982F2A246BF%40gmail.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%2BTqRsvCq0A7GuLyRADscU5%2BQOP4LNbYs-0BWCJhvjNpU_NUUQ%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/BBFCCCD9-7DF9-43C6-B82A-6C3BED03DD46%40gmail.com.


Re: send_mail not filling mail.outbox in certain circumstance

2020-07-08 Thread Matthew Pava
Well, I discovered that send_mail fails silently when you tell it not to. 
Apparently, I did not have the to_email and recipient_list populated with 
anything. I wonder if we could change the behavior of send_mail to require 
at least one of those two arguments...

On Wednesday, July 8, 2020 at 9:55:21 AM UTC-5, Matthew Pava wrote:
>
> Good day,
> I'm writing a functional test for checking that an email was sent after a 
> record was revised in my project. I placed a print statement to verify that 
> the send_mail function was called within the view that it is called in, and 
> it prints it out at the appropriate time. However, when I check 
> mail.outbox, the email is not in there--nothing is in there. I am using a 
> class that inherits from StaticLiveServerTestCase, so I thought that should 
> automatically handle changing the email setting appropriately. What am I 
> missing?
>
> I did try something else, though. Within the test function, I performed a 
> dummy send_mail call, and mail.outbox was populated with the dummy message. 
> But it is not populated with the message I want to test against. I 
> appreciate any guidance you can offer in this matter.
>
> Thanks,
> Matthew
>

-- 
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/e215ec31-a218-474a-acf4-42d0d79ddcaeo%40googlegroups.com.


how to change the format of datetimefield model

2020-07-08 Thread Chander shekhar
my default date time format is something like 2018-07-01 
I want to change it like 01-01-2018
Can any one help me in finding 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 django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e5e0091d-425c-43d1-aa53-c16cabf5fe0bo%40googlegroups.com.


Re: How to get names of columns from QuerySet without executing it

2020-07-08 Thread Dvil Djé
For a light version of the query, you can try a qs.first() as Django will 
limit the SQL request to the first element.

On Saturday, July 4, 2020 at 10:11:41 PM UTC+2, Eugene Kulak wrote:
>
> How to get names of columns from QuerySet without executing it?
> If it is not possible what would be the most easier way to execute a 
> lighter version of the query. 
> The query itself is unknown, it could be anything.
>

-- 
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/bc90a722-9ef7-4301-be5a-98915b92fe88o%40googlegroups.com.


Is there a better way to change the default server port?

2020-07-08 Thread Kshitij Kotasthane
I recently started using django and because port 8000 on my PC was already 
occupied, I had to modify the runserver.py file directly to start on 
another port. By default, shouldn't there be an option in manage.py or 
settings.py to modify the port to start the test server on? Or am I missing 
something?

Because this is very inconvenient as well,

python manage.py runserver 5000

-- 
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/ed0ec5c0-5f71-4144-9f89-034ae505db80o%40googlegroups.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread LordIS Kyle
I'm interested for this project


Le mer. 8 juil. 2020 14:25, Kumar Sanu  a écrit :

> Highly interested for this position
>
> On Wed, 8 Jul 2020, 15:12 Ajeet Kumar Gupt, 
> wrote:
>
>> Dear Team,
>>
>> I require Django programmers for an HR portal like leave request, HRMS.
>>
>> *System Requirements:*
>>
>> *1. Main Database :* Main app only for the authentication purpose and
>> employee information take it from the oracle ebs system by API.
>>
>> *2. Leave Application System:* User login and validate details from the
>> main app point no.1 apply the leave and send for the approver with history
>> details
>>
>> *3. SCR application :* Here also a  approval and rejection process with
>> customized notification based on company profile.
>>
>> *Note:* Single Sign On and single Employee Information no need to create
>> in every app for the user profile. I need to create the only Main App /
>> Main Database.
>>
>> Any person have interested please let me know and give me the demo on
>> zoom meeting as soon as possible.
>>
>>
>>
>> *Thanks & Regards*
>> Ajit
>>
>> --
>> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CAJ2YsERsvXsgPbU1RR0kPgfqjZ%2Bmu6%3DcJ%3DGjVXWYxVbfCevoPQ%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/CAM-He%3DGDDNGneb7W5gQ_Ghgk4EDkeA5Kq6RgdHMQ3Yw3UbuZHw%40mail.gmail.com.


Re: Static not working on unix while working on windows

2020-07-08 Thread Ajeet Kumar Gupt
You tried to first run collectststic

On Mon, Jul 6, 2020, 10:20 PM ashish goyal 
wrote:

> 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  because its MIME type ('text/html') is
> not a supported stylesheet MIME type, and strict MIME checking is enabled
> angular*
>
> I am using below script in windows which is working in windows but not on
> unix
>
> *{ % load static %}*
> * 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/D45C33B1-949B-4BBE-8338-8982F2A246BF%40gmail.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%2BTqRsvCq0A7GuLyRADscU5%2BQOP4LNbYs-0BWCJhvjNpU_NUUQ%40mail.gmail.com.


send_mail not filling mail.outbox in certain circumstance

2020-07-08 Thread Matthew Pava
Good day,
I'm writing a functional test for checking that an email was sent after a 
record was revised in my project. I placed a print statement to verify that 
the send_mail function was called within the view that it is called in, and 
it prints it out at the appropriate time. However, when I check 
mail.outbox, the email is not in there--nothing is in there. I am using a 
class that inherits from StaticLiveServerTestCase, so I thought that should 
automatically handle changing the email setting appropriately. What am I 
missing?

I did try something else, though. Within the test function, I performed a 
dummy send_mail call, and mail.outbox was populated with the dummy message. 
But it is not populated with the message I want to test against. I 
appreciate any guidance you can offer in this matter.

Thanks,
Matthew

-- 
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/582038f8-58b0-48b5-9bbd-f8e08eff40dfo%40googlegroups.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Kumar Sanu
Highly interested for this position

On Wed, 8 Jul 2020, 15:12 Ajeet Kumar Gupt,  wrote:

> Dear Team,
>
> I require Django programmers for an HR portal like leave request, HRMS.
>
> *System Requirements:*
>
> *1. Main Database :* Main app only for the authentication purpose and
> employee information take it from the oracle ebs system by API.
>
> *2. Leave Application System:* User login and validate details from the
> main app point no.1 apply the leave and send for the approver with history
> details
>
> *3. SCR application :* Here also a  approval and rejection process with
> customized notification based on company profile.
>
> *Note:* Single Sign On and single Employee Information no need to create
> in every app for the user profile. I need to create the only Main App /
> Main Database.
>
> Any person have interested please let me know and give me the demo on zoom
> meeting as soon as possible.
>
>
>
> *Thanks & Regards*
> Ajit
>
> --
> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CAJ2YsERsvXsgPbU1RR0kPgfqjZ%2Bmu6%3DcJ%3DGjVXWYxVbfCevoPQ%40mail.gmail.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Pawan Acharya
I am interested too

On Wed, Jul 8, 2020, 3:13 PM Ajeet Kumar Gupt 
wrote:

> Dear Team,
>
> I require Django programmers for an HR portal like leave request, HRMS.
>
> *System Requirements:*
>
> *1. Main Database :* Main app only for the authentication purpose and
> employee information take it from the oracle ebs system by API.
>
> *2. Leave Application System:* User login and validate details from the
> main app point no.1 apply the leave and send for the approver with history
> details
>
> *3. SCR application :* Here also a  approval and rejection process with
> customized notification based on company profile.
>
> *Note:* Single Sign On and single Employee Information no need to create
> in every app for the user profile. I need to create the only Main App /
> Main Database.
>
> Any person have interested please let me know and give me the demo on zoom
> meeting as soon as possible.
>
>
>
> *Thanks & Regards*
> Ajit
>
> --
> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CALXgWE_CUtMzLj70XafMvHM4jzwbQZ9P1_4wacH4nhi0H0boow%40mail.gmail.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Gurmeet Kaur
Hi All,

I am also interested in this project.


Thanks,
Gurmeet Kaur

On Wed, Jul 8, 2020 at 8:05 AM Ali Murtuza  wrote:

> Hello I am interested in this project
>
> On Wed, 8 Jul 2020 at 3:06 PM, vishal sharma  wrote:
>
>> I am interested in this position. I have an experience in Django,
>> Python,AWS,Pandas,Numpy, shell,bash, Angular, HTML, css.
>>
>> On Wed, 8 Jul 2020 at 3:13 PM, Ajeet Kumar Gupt 
>> wrote:
>>
>>> Dear Team,
>>>
>>> I require Django programmers for an HR portal like leave request, HRMS.
>>>
>>> *System Requirements:*
>>>
>>> *1. Main Database :* Main app only for the authentication purpose and
>>> employee information take it from the oracle ebs system by API.
>>>
>>> *2. Leave Application System:* User login and validate details from the
>>> main app point no.1 apply the leave and send for the approver with history
>>> details
>>>
>>> *3. SCR application :* Here also a  approval and rejection process with
>>> customized notification based on company profile.
>>>
>>> *Note:* Single Sign On and single Employee Information no need to
>>> create in every app for the user profile. I need to create the only Main
>>> App / Main Database.
>>>
>>> Any person have interested please let me know and give me the demo on
>>> zoom meeting as soon as possible.
>>>
>>>
>>>
>>> *Thanks & Regards*
>>> Ajit
>>>
>>> --
>>> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CADdVhnZfqn5uKBJd2578v0CHCnzyrur1Hk42oM%2BVMY_K0mJOkw%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%2BGgMvXPJBSzmfhnSHCCBky8Pn7mSbYM53R1bsrr3%3DgJR0eZVw%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/CAEbKJViJiJGc%3DFMJ4%2BZDMHvb7UaL-Ldwg7NW45EH2cP2kStBGQ%40mail.gmail.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Ali Murtuza
Hello I am interested in this project

On Wed, 8 Jul 2020 at 3:06 PM, vishal sharma  wrote:

> I am interested in this position. I have an experience in Django,
> Python,AWS,Pandas,Numpy, shell,bash, Angular, HTML, css.
>
> On Wed, 8 Jul 2020 at 3:13 PM, Ajeet Kumar Gupt 
> wrote:
>
>> Dear Team,
>>
>> I require Django programmers for an HR portal like leave request, HRMS.
>>
>> *System Requirements:*
>>
>> *1. Main Database :* Main app only for the authentication purpose and
>> employee information take it from the oracle ebs system by API.
>>
>> *2. Leave Application System:* User login and validate details from the
>> main app point no.1 apply the leave and send for the approver with history
>> details
>>
>> *3. SCR application :* Here also a  approval and rejection process with
>> customized notification based on company profile.
>>
>> *Note:* Single Sign On and single Employee Information no need to create
>> in every app for the user profile. I need to create the only Main App /
>> Main Database.
>>
>> Any person have interested please let me know and give me the demo on
>> zoom meeting as soon as possible.
>>
>>
>>
>> *Thanks & Regards*
>> Ajit
>>
>> --
>> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CADdVhnZfqn5uKBJd2578v0CHCnzyrur1Hk42oM%2BVMY_K0mJOkw%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%2BGgMvXPJBSzmfhnSHCCBky8Pn7mSbYM53R1bsrr3%3DgJR0eZVw%40mail.gmail.com.


Re: Suggestions Front tool

2020-07-08 Thread kishore
Hi Derek,

thanks a lot for the suggestion, but i would not get good GUI in terms of
theme, buttons, and give the colors for specific verdicts.
and in future i might have to leverage the things in front GUI that i am
going develop for existing TCL framework.

apart from this any other suggestion would help me great,

THanks,
Kishore.


On Tue, Jul 7, 2020 at 9:00 PM Derek  wrote:

> You are better off using Django for what is it designed for - web-based
> systems - and rather use other Python alternatives for desktop-based GUIs
> e.g. pyQT
> (see various resources such as
> https://blog.resellerclub.com/the-6-best-python-gui-frameworks-for-developers/
>  )
>
> On Tuesday, 7 July 2020 14:37:24 UTC+2, kishore babu wrote:
>>
>> Hi,
>>
>> I have TCL frame work with me, we keep on using it for our activities
>> currently, its CLI based and running in laptop in cmd windows
>>
>> We used to open two config files and start the cli command for the
>> execution, but i see few mistakes and more man power is required where no
>> documentation needed
>> to give strength for my TCL frame work[in fact to my team] i thought i
>> can develop GUI frond end tool
>>
>> *mainly 6 requirements*
>> 1. giving few IP address, selecting the tool names, time values will be
>> stored in the test_configuration.cfg
>> 2. select the test case from search engine fetching  from TCL frame work
>> store it in the test_cases.cfg
>> 3. once the above configs done then from GUI will initiate the run
>> command
>> 4. then we shall have to monitor the execution from frame work
>> 5. saving the logs and opening execution report,
>> 6. if the test case FAIL then it should be seen on GUI RED colored if
>> PASSED - should be see in Green color.
>>
>> here i came to ask can the Django will give me GUI front end for my TCL
>> frame work... rather than web based interface.
>>
>> If yes where i can start,
>>
>> ***i am sorry i shouldn't mentioned the frame work name or the command to
>> run in open forums as its proprietary tool.***
>>
>> Thanks,
>> Kishore.
>>
> --
> 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/a61315a8-a972-445f-8090-fb885c95be77o%40googlegroups.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/CAGF%3DDOgpgG%2BZOxW9o-kERSenPs_xHWiFegQN8-V9nOugmy-J9w%40mail.gmail.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread vishal sharma
I am interested in this position. I have an experience in Django,
Python,AWS,Pandas,Numpy, shell,bash, Angular, HTML, css.

On Wed, 8 Jul 2020 at 3:13 PM, Ajeet Kumar Gupt 
wrote:

> Dear Team,
>
> I require Django programmers for an HR portal like leave request, HRMS.
>
> *System Requirements:*
>
> *1. Main Database :* Main app only for the authentication purpose and
> employee information take it from the oracle ebs system by API.
>
> *2. Leave Application System:* User login and validate details from the
> main app point no.1 apply the leave and send for the approver with history
> details
>
> *3. SCR application :* Here also a  approval and rejection process with
> customized notification based on company profile.
>
> *Note:* Single Sign On and single Employee Information no need to create
> in every app for the user profile. I need to create the only Main App /
> Main Database.
>
> Any person have interested please let me know and give me the demo on zoom
> meeting as soon as possible.
>
>
>
> *Thanks & Regards*
> Ajit
>
> --
> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CADdVhnZfqn5uKBJd2578v0CHCnzyrur1Hk42oM%2BVMY_K0mJOkw%40mail.gmail.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Sherif Adigun
Hi! I'm interested in working on this project.

Kindly join the meeting here and let's have a discussion to get started 
immediately

Join Zoom Meeting
https://us04web.zoom.us/j/72990105966?pwd=VVhPL2s2MUNuLzJOQ3V2Y2o3T2M3Zz09

Meeting ID: 729 9010 5966
Password: 8uRMUw



-- 
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/bb453bc4-e7b5-4f85-ae3c-ff326f365a21o%40googlegroups.com.


Re: Required Django Programmer for freelancer

2020-07-08 Thread Hadisur Rahman
interested.

On 7/8/20, Ajeet Kumar Gupt  wrote:
> Dear Team,
>
> I require Django programmers for an HR portal like leave request, HRMS.
>
> *System Requirements:*
>
> *1. Main Database :* Main app only for the authentication purpose and
> employee information take it from the oracle ebs system by API.
>
> *2. Leave Application System:* User login and validate details from the
> main app point no.1 apply the leave and send for the approver with history
> details
>
> *3. SCR application :* Here also a  approval and rejection process with
> customized notification based on company profile.
>
> *Note:* Single Sign On and single Employee Information no need to create in
> every app for the user profile. I need to create the only Main App / Main
> Database.
>
> Any person have interested please let me know and give me the demo on zoom
> meeting as soon as possible.
>
>
>
> *Thanks & Regards*
> Ajit
>
> --
> 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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%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/CAOd0vtX6A7nwAeYsbHV%3DKx5qGB5ToF7Z3hO_pCPm9nfwPgd0jA%40mail.gmail.com.


Required Django Programmer for freelancer

2020-07-08 Thread Ajeet Kumar Gupt
Dear Team,

I require Django programmers for an HR portal like leave request, HRMS.

*System Requirements:*

*1. Main Database :* Main app only for the authentication purpose and
employee information take it from the oracle ebs system by API.

*2. Leave Application System:* User login and validate details from the
main app point no.1 apply the leave and send for the approver with history
details

*3. SCR application :* Here also a  approval and rejection process with
customized notification based on company profile.

*Note:* Single Sign On and single Employee Information no need to create in
every app for the user profile. I need to create the only Main App / Main
Database.

Any person have interested please let me know and give me the demo on zoom
meeting as soon as possible.



*Thanks & Regards*
Ajit

-- 
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%2BTqRstOCEpZsnpq%3DyJkgqRRXY-UBqUMMxX%2BaM-Mt7Q-pBejoQ%40mail.gmail.com.