“Scrapy and Scrapyrt: how to create your own API from (almost) any website” published by Jérôme Mottet - We can Integrate in our own project

2019-04-15 Thread Balaji Shetty
from (almost) any website” published by Jérôme Mottet To: [image: Medium Logo] Stories for Balaji Shetty Today’s highlights <https://medium.com/@mottet.dev/scrapy-and-scrapyrt-how-to-create-your-own-api-from-almost-any-website-ecfb0058ad64?source=email-309f6f94d779-1555241619464-digest.reader

How to override default Django Admin Panel Model display to Customization

2019-04-15 Thread Balaji Shetty
Hi When i do login using Django Admin Panel , i can easily perform CRUD operation on Models. can i customize the display of Models Records in django Admin Panel Itself, when I select the model, I get all the records, But i want to filter the records based on some Criteria. Here is my model .

How can we initiate Multi User Project Management System

2019-04-11 Thread Balaji Shetty
High Can anyone please suggest me how can we initiate Multi User Project Management System> Scenarios is Like For Example, Suppose we have to develop University management System Level One- University Principal as Super User Level 2 - University May have N Department like Engg, Medical,

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
is this : pip install django-admin-select2 > > It didn't have docs, just the git page (django-admin-select2 > <https://github.com/mgd020/django-admin-select2>) with a readme, its > really easy, does all you need but you cant customize. > > > Regards. > > >

How to

2019-05-13 Thread Balaji Shetty
Hi Consider the demo Example models.py *from django.db import models class Musician(models.Model): first_name = models.CharField(max_length=50) last_name = models.CharField(max_length=50) instrument = models.CharField(max_length=100) class Album(models.Model): artist =

Re: How to make Django Project Mobile Compatible

2019-05-13 Thread Balaji Shetty
to > build layouts that works across the various sized devices. > > Of course you can go with any JS framework if you're planning to build > single page app. > > la 11. toukok. 2019 klo 10.05 Balaji Shetty > kirjoitti: > >> Hi >> >> How can i make my Djang

Re: How to Implement Cascading Dependent Drop Down List using Foreign Key Relationship in Django Admin GUI

2019-05-17 Thread Balaji Shetty
y code is the difficulty.* *Can anyone help me in getting Cascading interdependent drop down Features with Foreign Key in Admin GUI only.* On Thu, May 16, 2019 at 11:09 PM Balaji Shetty wrote: > Dear carlos > Thank You very much. > > On Thu, May 16, 2019 at 8:16 PM carlos wrote: > >

Re: Hosting - Does pythonanywhere supports all features as AWS.

2019-05-27 Thread Balaji Shetty
anji > +91-900-483-4183 > ganji.che...@gmail.com > http://ryucoder.in > > > On Mon, May 27, 2019 at 12:19 AM Balaji Shetty > wrote: > >> Does pythonanywhere supports all features as AWS. >> >> Or any service it does not as compared to AWS. >> >> >

Re: Hosting - Does pythonanywhere supports all features as AWS.

2019-05-27 Thread Balaji Shetty
Than You On Mon, May 27, 2019 at 7:50 PM Chandrashekhar Singh < chandrashekhar...@gmail.com> wrote: > Hii, > It will better if you ask or email python anywhere directly > > > On Sun, May 26, 2019, 2:49 PM Balaji Shetty > wrote: > >> Does pythonanywhere supports

Re: KeyError at /admin/newapp/profile/add/ and Search Error --- Related Field got invalid lookup: icontains

2019-05-27 Thread Balaji Shetty
Hi Sorry This is my model class Profile(models.Model): RCS1 = "Regular_Civil_Suit" SCS1 = "Special_Civil_Suit" RCA1 = "Regular Civil Appeal" MCA1 = "Miscellaneous Civil Appeal" CMA1 = "Civil Miscellaneous Application" LAR1 = "Land Acquisation Reference" SED1 =

How to restore Models original Properties - Problem in Models column Exclude

2019-05-27 Thread Balaji Shetty
*Hi* *i have encountered very strange problem. have two user . One is superuser of name "root" and another is general user of name "dgp". I have model of Name Profile with 21 fields around.* *I want to show all field of Model Profile in "root" login.* *I want to exclude 4 field of Model Profile

Re: What's wrong with this model

2019-05-27 Thread Balaji Shetty
Hi You may change elogin column syntax and provide default="Some_Value" .This may work. On Tuesday, May 28, 2019, Chandrashekhar Singh wrote: > You have to add null= true to each model field since database needs > default value > > On Mon, May 27, 2019, 5:52 PM Saeed Pooladzadeh > wrote: >

Re: How to restore Models original Properties - Problem in Models column Exclude

2019-05-28 Thread Balaji Shetty
Dear Alexis Roda Sir Thank You very much for your nice reply. I check it. On Tue, May 28, 2019 at 1:55 AM Alexis Roda < alexis.roda.villalo...@gmail.com> wrote: > Not an admin expert here. > > You are modifying the modeladmin instance and, by the behavior you're > describing, it looks like it

KeyError at /admin/newapp/profile/add/ and Search Error --- Related Field got invalid lookup: icontains

2019-05-26 Thread Balaji Shetty
Hi Here i want to exclude some model filed depending upon type of User. Example if username is "dgp", i want to exclude in admin.py if username == "dgp": * self.exclude = ("UserNext","UserNextDate","UserNextDepartment","CaseStatus")* *in* def get_form(self, request, obj=None,

Re: Hosting - Does pythonanywhere supports all features as AWS.

2019-05-26 Thread Balaji Shetty
Does pythonanywhere supports all features as AWS. Or any service it does not as compared to AWS. On Sat, May 25, 2019 at 6:50 PM Subramanian Sridharan < clawsonfir...@gmail.com> wrote: > I prefer PythonAnywhere for hosting. > > On Saturday, May 25, 2019 at

Re: SOLUTION FounD : How to restore Models original Properties - Problem in Models column Exclude

2019-05-31 Thread Balaji Shetty
Dear Alexis Roda Sir Thank You very Much. definitely Race Condition may arise if we do not put code inn critical section. But your suggested approach did not work and i found another alternative which is working fine. If we put this code with necessary care than will it be ok? On Tue, May 28,

Error - Cannot query "dgp": Must be "Employee" instance. ( dgp is userName and Employee is Model Name )

2019-05-31 Thread Balaji Shetty
HI I get the error when i enter the records of Profile Model and save it. i get GUI for model. I created group and given access of both model to dgp user. ValueError at /admin/newapp/profile1/ dgp is my user name and Employee is the model name. Can anybody help me in this regards Employee

SOLUTION FounD : How to restore Models original Properties - Problem in Models column Exclude

2019-05-28 Thread Balaji Shetty
fields + self.superuser_fields + self.inward_fields return super(ProfileAdmin, self).get_form(request, obj, **kwargs) On Tue, May 28, 2019 at 1:02 PM Balaji Shetty wrote: > Dear Alexis Roda Sir > > Thank You very much for your nice reply. I check it. > > On Tue, May 28, 2019 a

What is the best way to write the code for Face Detection in Django ( Any Library or third party )

2019-06-20 Thread Balaji Shetty
*Hi* *Consider the following Scenario. We will take attendance in a class based on students Face Detection. Suppose there are 100 Students in a class. * *If Students Face detected then Presenty model field in ATTENDANCE will be 1 or 0. ( Boolean )* I have a model of Name STUDENTS consisting

How to create Different Graphs and PDF Reports

2019-06-24 Thread Balaji Shetty
HI can anyone suggest How to create Different Graphs and PDF Reports in Django Admin Panel itself which work on Models with relation. It there any library. -- *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,* *SGGS Institute of Engineering & Technology, Vishnupuri,

Cascadind Drop Down in Django Admin Panel

2019-05-09 Thread Balaji Shetty
HI *How can I add cascading drop down for Continent and Country in Django Admin Panel.* Here I add Continent and Country. When i change Continent, Country should be changed automatically. How can i achieve this. Consider my model.py class Continent(models.Model): name =

Re: Cascadind Drop Down in Django Admin Panel

2019-05-09 Thread Balaji Shetty
Thanks a lot for your reply Dear Jani Tiainen I try it. On Thursday, May 9, 2019, Jani Tiainen wrote: > You could try django-select2 for example. > > to 9. toukok. 2019 klo 11.03 Balaji Shetty > kirjoitti: > >> >> HI >> >> *How can I add cascad

Re: How to make Django Project Mobile Compatible

2019-05-11 Thread Balaji Shetty
frontend is mobile friendly or not. > > You can use react or angular, you can also use many other frontend > frameworks. Django can work with all frontend frameworks. The choice is > entirely up to you. > > On Sat, 11 May 2019, 08:04 Balaji Shetty, wrote: > >> Hi >> >&

How to make Django Project Mobile Compatible

2019-05-11 Thread Balaji Shetty
Hi How can i make my Django Project view Mobile Compatible. Should i use Angular JS / React . Please let me know. Thanks in Advance -- *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,* *SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*

Can Anyone Please Provide djago-select2 Documentation

2019-05-14 Thread Balaji Shetty
Hi I need Cascading drop down list in Django Admin GUI. I have bee trying to use Django-select2 but i am not getting the desired output. ( Example Select Continents, select respective Country under Continent ) Can Anyone Please Provide djago-select2 Documentation or any other simple

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
do it. Please. On Wed, May 15, 2019 at 11:35 AM Julio Cojom wrote: > Hi, I used a package exclusive for admin, it call django-select2-admin and > it's magic. Only register in installed apps and that's all. > > Regards. > > El mar., 14 de may. de 2019 11:12 p. m., Balaji Sh

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
__str__(self): return self.city <http://self.name>* On Wed, May 15, 2019 at 12:35 PM Balaji Shetty wrote: > Thank once again. I followed the instruction but i am not getting any > changes. > Can you please see the error

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
t includes everything like installation > instructions, gut repo for the packages etc > > On Wed, May 15, 2019, 11:57 AM Balaji Shetty > wrote: > >> Hi Julio Cojom >> >> Thank You very much for your reply. >> Can you please provide me the web link for necess

Re: Need help for Cascading Drop Down for Continent, Country in Admin GUI - Not Getting correct Answer from Many Days

2019-05-21 Thread Balaji Shetty
wrote: > Everything seems alright. It seems you haven't created any continents yet. > The table is empty. > > On Wed, 22 May, 2019, 10:52 AM Balaji Shetty wrote: > >> Hi >> >> I am learning Django from last months and want to implement Cascading >> Drop Down f

Need help for Cascading Drop Down for Continent, Country in Admin GUI - Not Getting correct Answer from Many Days

2019-05-21 Thread Balaji Shetty
Hi I am learning Django from last months and want to implement Cascading Drop Down for Continent and Country in Admin GUI. I dropped same query two times but i could not get exact correct solution. I tried lot of option like django-smart-select and many more.. But i could not get updates in

Re: Show different views based on user

2019-05-23 Thread Balaji Shetty
HI Consider this example and you may get the solution Model name is Profile and in admin.py override this def get_form(self, request, obj=None, **kwargs): - admin.py from django.contrib.auth.models import User class

Re: How to

2019-05-18 Thread Balaji Shetty
at 7:32 PM Nelson Varela wrote: > Take a look at django permissions/groups models where you can make groups > and put these models in each group. After that you add the users to the > group so they can only edit models in that group > > On Monday, May 13, 2019 at 9:30:08 AM UTC+2

How to Implement Cascading Dependent Drop Down List using Foreign Key Relationship in Django Admin GUI

2019-05-16 Thread Balaji Shetty
Hi Can anyone please provide me the resource for implementation of Cascading Dependent Drop Down List in Django Admin GUI. I do now want to write any code and use existing Admin GUI only. I tried many select2 but could not get any success. Here is my sample code *I followed the

Re: How to Implement Cascading Dependent Drop Down List using Foreign Key Relationship in Django Admin GUI

2019-05-16 Thread Balaji Shetty
Dear carlos Thank You very much. On Thu, May 16, 2019 at 8:16 PM carlos wrote: > try this app > https://django-autocomplete-light.readthedocs.io/en/master/ > > On Thu, May 16, 2019 at 5:59 AM Balaji Shetty > wrote: > >> >> Hi >> >> Can anyone please

Django How to write Customized Query ( Display Information Departmentwise)

2019-04-19 Thread Balaji Shetty
HI My models.py class T1(models.Model): CaseNumber = models.TextField(blank=True,null=True) UserCurrent = models.TextField(blank=True,null=True,default='user1') UserCurrentDepartment = models.TextField(blank=True,null=True) def __str__(self): return '%s %s' %

Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
Hi I do not have any experience for cloud hosting. Can you please suggest Cloud Service Provider to host Django Application. My Application need Security and Salability. Many options are there like - PythonAnywhere. .. - *Heroku*. ... - A2 Hosting. ... - *AWS*. ... -

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
l service provider, I > saved a thousand dollars ($1000) a month. While going with ATT at another > site costed a bundle @ $400 per month but left me with over a thousand > viral infections on my server/host. > > > > On May 2, 2019 5:51 AM, "Balaji Shetty" wrote

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
*Thanks Aldian Fazrihady * On Thu, May 2, 2019 at 5:26 PM Aldian Fazrihady wrote: > Use AWS or GCP. You can automate the scaling. > > Regards, > > Aldian Fazrihady > > > On Thu, 2 May 2019, 16:51 Balaji Shetty, wrote: > >> Hi >> >> I do not h

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
on your requirements and budget, but certainly I can >> say I'm getting in love with DigitalOcean (Spaces with CDN for static >> files), Kubernetes (LTD) and Helm. >> >> >> Il giorno giovedì 2 maggio 2019 11:51:57 UTC+2, Balaji Shetty ha scritto: >>> >>> Hi &

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
gt; > Il giorno giovedì 2 maggio 2019 11:51:57 UTC+2, Balaji Shetty ha scritto: >> >> Hi >> >> I do not have any experience for cloud hosting. Can you please suggest >> Cloud Service Provider to host Django Application. >> >> My Application nee

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-02 Thread Balaji Shetty
documentation. > > So it really isn't for any of us to tell you which provider to use. They > all work, you just have to research them and find what price/feature > set/level of expertise required suits you best. > > > - Nick > > > On Thu, May 2, 2019 at 10:51 AM Bala

Integrating Wagtail into a Django project -

2019-05-02 Thread Balaji Shetty
Hi While searching different Django Features, i have seen Integrating Wagtail into a Django project. Actually i want to make my Application more user friendly with professional GUI. So may i use Wagtail for my purpose. Also I have visited website

Re: Which Cloud Service Provider should be chosen to host Django Application

2019-05-03 Thread Balaji Shetty
Dear Lucas G. Navarro Thank You very much. On Thu, May 2, 2019 at 11:02 PM Lucas G. Navarro wrote: > webfaction is good too! > > Regards! > > El jue., 2 may. 2019 a las 12:40, escribió: > >> This seems related to my question on how to do Blue/Green deployments.

Need Help in choosing Proper Technoloy for Multiuser management System

2019-05-03 Thread Balaji Shetty
Hi *I have the requirement to create multi-user management system with ACL support* We have organization having different Section with respective Section Head as User. Each Section have multiple sub section with respective User. *Root User get random Records initially.* *Root user will

Django to exe ... windows executable

2019-07-02 Thread Balaji Shetty
Hello everyone I want to can work my D jango application into exe format this application will run on windows machine my application have libraries and dependencies. There are lots of options which are available on web. which is the best option. please help me Thank you very much. Have a

Re: Django How to write Customized Query ( Display Information Departmentwise)

2019-04-22 Thread Balaji Shetty
Dear Gaurav Sir I am very much thankful to you for your reply to my query. My questions is *How can i make the customization in Django Admin Panel itself to implement necessary logic after user of particular department do the login.( How and where to embed proposed Logic

Re: Advanced permissions and role creation

2019-04-23 Thread Balaji Shetty
Hi Did you get any particular solution. I am also facing the same problem. My project also have same requirement. I think this problem must have been faced by every dveloper. Can you please share the solution or any useful internet resource . On Sun, Apr 21, 2019 at 4:37 PM Joel Mathew wrote:

Feedback regarding Django-Suit for Django Admin Panel Customization - Need to add New Menu for Report Generations

2019-04-09 Thread Balaji Shetty
Dear Sir, I am developing one web based application Django. I could understand Simple Web application as well as entire Django Admin Panel working upto this time. My requirement is I want to add new menu in existing Admin Panel. I have been searching a lot from many days but could not get any

Re: Caltech Pedestrian Detection Annotations

2019-04-09 Thread Balaji Shetty
Please refer kaggle web site. It contains all data set with Classification algorithm and results also. You may get ideas. https://www.kaggle.com/c/state-farm-distracted-driver-detection/discussion/22018 Shetty Balaji On Mon, Apr 8, 2019 at 4:37 PM Aakash Baranwal wrote: > Hi Everybody, > >

Re: Advanced permissions and role creation

2019-04-25 Thread Balaji Shetty
Dear Mike Dewhirst Thank You Very Much for your nice reply . I try it . On Thu, Apr 25, 2019 at 6:26 AM Mike Dewhirst wrote: > On 23/04/2019 9:22 pm, Balaji Shetty wrote: > > Hi > > > > Did you get any particular solution. I am also facing the same > > problem

Re: need help

2019-04-25 Thread Balaji Shetty
Hi You can see Try Django Tutorial Seris on Youtube ( Free ). Very nice and you can get good Knowledge On Thu, Apr 25, 2019 at 5:31 PM kashinath kambar wrote: > I am new to python development, can anyone help me out by giving some > beginners projects.. and how to improve my coding skills.

How can i share one Database Sqlite between 2 app on pythonanywhere

2019-09-03 Thread Balaji Shetty
Hi Everyone Can anybody suggest me How can i share one Database Sqlite between 2 app on pythonanywhere. Currently i have deployed one project on PythonAnywhere. I have purchases 2 App. Now i can execute 2 App simultaneous. I have deployed app1.pythonanywhere.com and app2.pythonanywhere.com

how to add graphs in django admin panel

2019-08-26 Thread Balaji Shetty
Hi everyone Can anybody suggest me how to add different graphs in django admin panel for relational models. I will apply count, group by clsuse query to display count. One more questions. We can change default django Administration GUI using django admin suit. How is it. Is there any other way

Re: How can i share one Database Sqlite between 2 app on pythonanywhere -. Should I prefer postgresql or MySQL - Security

2019-09-05 Thread Balaji Shetty
Thanks for your reply. I hosted on pythonAnywhere. Is it possible for postgresql. Should I prefer postgresql or MySQL regarding security issues . Can you please tell me how to achieve in MySQL. Also how can I backup daily data of server on my local machine . Can any DB also provide front-end

PLS Help Me in Securing Project - Application on PythonAnyWhere hosted

2019-09-04 Thread Balaji Shetty
Hello Every one I am new to Django. I have been working from 4 to 5 months only. I have deployed the real time Project on PythonAnywhere. Client is using this now. My Basic question is How to Secure our Project. What are the Preventive Steps We must take before deployment of Project. Some

Any Pypi Library to generate Different Reports on Connected models as well.as Different Graph Generation

2019-09-07 Thread Balaji Shetty
Hi everyone Can any one of you please tell me is there Any Pypi Library to generate Different Reports on Connected models as well.as Different Graph Generation. I want to apply aggregate function like sum, count, avg, group by, having, inner and outer join. I want to generate in Django admin

how to convert django application to Windows exe format

2019-07-21 Thread Balaji Shetty
Hi Can anyone please tell me how to convert django application to Windows exe format. -- 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

best option for Front End Design in Django

2019-09-26 Thread Balaji Shetty
Hi Can anybody please tell me what are the different options to create GUI (User Interface ) for Front End in Django. I got answer like Angularjs, Nodejs, HTML5 or CSS. Which one is easier as well as mobile compatible if we need to develop mobile App also. -- *Mr. Shetty Balaji S.Asst.

Re: best option for Front End Design in Django

2019-09-26 Thread Balaji Shetty
n Thu, Sep 26, 2019 at 11:50 AM Pengyu Cao > wrote: > >> Hey, how about check this, >> https://www.similartech.com/compare/angular-js-vs-react-js >> >> On Thursday, September 26, 2019 at 4:48:30 PM UTC+8, Suraj Thapa FC wrote: >>> >>> React >>> >

Re: best option for Front End Design in Django

2019-09-27 Thread Balaji Shetty
atively advanced. I would >>>> focus on what you are doing now before thinking about that journey. >>>> >>>> >>>> - Nick >>>> >>>> >>>> On Thu, Sep 26, 2019 at 11:50 AM Pengyu Cao >>>> wrote: >>

How t do Login using Gmail, twtter or facebook

2019-11-11 Thread Balaji Shetty
Hi can anyone give me web resource to login into Application using Gmail Account. -- *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,* *SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India* *Official: bsshe...@sggs.ac.in * * Mobile:

How to migrate and copy Data from sqlite to Postgresql

2019-10-30 Thread Balaji Shetty
Hi Can anyone please provide me help or any website providing help of DB Migration. Already I have deployed Application on pythonanywhere . There are 250 records already created and relational database with 5 models present in Application. Default DB is Sqlite and I have to switch to

Re: How t do Login using Gmail, twtter or facebook

2019-11-12 Thread Balaji Shetty
> > > On Mon, Nov 11, 2019 at 9:32 AM Andréas Kühne > wrote: > >> >> https://simpleisbetterthancomplex.com/tutorial/2016/10/24/how-to-add-social-login-to-django.html >> >> Regards, >> >> Andréas >> >> >> Den mån 11 nov. 2019 k

Re: Django Admin Custom View Query Generation

2019-12-13 Thread Balaji Shetty
Thank you very much Derek. You always provide nice help. Can we generate graphs for reports in Django Admi n. On Saturday, December 14, 2019, Derek wrote: > You can use built-in Django ORM methods to perform calculated operations > on existing models (you don't need a new model). See:

Django Admin Custom View Query Generation

2019-12-12 Thread Balaji Shetty
Hi Can anyone please tell me how can we generate Custome Model view for different report where we use avg, min , max, sum, count , group by clause. We have to generate this report in Django Admin Panel only. Can we generate respective Graphs also. Is there any library available. -- Mr

Query for Data Tables Report Generation and Graph

2019-12-07 Thread Balaji Shetty
Hi I have used django_data_table2 django-tables2 - An app for creating HTML tables My Query is can I generate Graph as well as export data in pdf format. On Thursday, December 5, 2019, Matheus Almeida < matheus.alme...@spotsales.com.br> wrote: > > > Em quinta-feira, 20 de abril de 2017

Re: Python problem... Chetan is really Genius

2019-12-15 Thread Balaji Shetty
Yes... Definitely I am also Ghetan Fan. He has tremendous knowledge and Practical Experience of Django. Cheers for Chetan On Sunday, December 15, 2019, Gil Obradors wrote: > Chetan, you're a genius! > > Missatge de Chetan Ganji del dia dg., 15 de des. > 2019 a les 16:28: > >> # input:

How to create Graphs and charts on Relational ORM

2019-10-26 Thread Balaji Shetty
Hi Everyone Happy Diwali . I have one query I want to create different Charts. It may include Aggregate query like avg,min,max,sum,count,group by also. Query is to perform on multiple models which are connected by Foreign key. Can you please suggest any library or package for getting these

Wagtail or Django CMS or Mez for Web Site

2019-11-24 Thread Balaji Shetty
Hi If I want to develop website in Django. Which ones I should prefer Wagtail or Django CMS or Mez Kindly reply -- Mr Shetty Balaji Asst. Prof. IT Department SGGS I Nanded. My. India -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Wagtail or Django CMS or Mez for Web Site

2019-11-24 Thread Balaji Shetty
gt; > Hey! > Can we insert django-cms in already made Django based projects.? > Is this possible.? > >> >> >> Sent from my iPhone >> >> On 24 Nov 2019, at 19:52, Balaji Shetty wrote: >> >> Hi >> >> If I want to develop website in Djang

Need Freelancer to work on project

2019-11-24 Thread Balaji Shetty
Hi I have a project. If anybody is interested to work and complete the work.Kindly let me know on my personal email id Only. Developer may work remotely. Assignment will be done on quality of work as well as completion time ( 1 to 2 weeks only) . Please contact with bio data, your previous

Re: Alternatives to django ajax select - VIMP Information for EveryOne

2019-10-31 Thread Balaji Shetty
Really Very Nice Help. Thx On Thu, Oct 31, 2019 at 6:22 AM carlos wrote: > https://github.com/yourlabs/django-autocomplete-light > > On Wed, Oct 30, 2019 at 3:35 PM Luis Zárate wrote: > >> Hi Guys, >> >> Do you know any alternative to django-ajax-selects, I am using it in a >> project in

Necessary Precautions to be taken in Software to pass security Audit

2019-12-18 Thread Balaji Shetty
Good Evening One query raised. My project is Government and it must pass through Security Audits. Company may be indian Government. It was built in Django with Sqlite backend. It is hosted on Pythonanywhere. 90% work is accomplished in backend only. Only report and graph display are in

Suitable Frontend for Django Ract

2019-12-21 Thread Balaji Shetty
Hi I want to know suitable frontend for Django. CURRENTLY I use bootstrap for frontend. React or Angular or Vuejs or any other It should be Easy to learn Provide highest security Easily scalable Can create mobile App -- Mr Shetty Balaji Asst. Prof. IT Department SGGS I Nanded. My. India

Re: Django Error - 'staticfiles' is not a registered tag library. Must be one of: admin_list admin_modify admin_urls

2019-12-18 Thread Balaji Shetty
Thank you very much everyone for help.My problem is solved with version updates. On Tuesday, December 17, 2019, Bilim Tr wrote: > > > 10 Aralık 2019 Salı 19:00:32 UTC+3 tarihinde Balaji yazdı: >> >> Hi >> >> I am getting error for every Project. >> >> I created new environment and reinstalled

Re: Got an interview, need some idea for projects.

2020-01-24 Thread Balaji Shetty
Congrats Dear It's not important how many concept you know. It's important regarding your basics for Model, View class and function , Template, Rest API and Admin Basics with User, group Management , with and permission. Most important is Data Base normailZation and Query languages. As you are

Refer web page to Another Whatsapp Number

2020-02-22 Thread Balaji Shetty
Hi Can anyone please suggest me how can i achieve the following task If my web site have a particular page which is liked by the user. My web site user want to share. this page with his friend on whatsapp. So web site will have share Button which will redirect him to Whatsapp App. He will

Can I access App Data in CMS

2020-01-17 Thread Balaji Shetty
Hi I have to create static pages with Audio, video and image Gallery in existing Django Software App. How can I achieve it. Should I create CMS and access Software App Data. is it possible to use django App Data in CMS. Which CMS we should prefer. -- Mr Shetty Balaji Asst. Prof. IT

Re: Can I access App Data in CMS

2020-01-17 Thread Balaji Shetty
Hi Thank you very much for your reply. Can you please send me any meaningful web resources On Saturday, January 18, 2020, kaito . wrote: > Yes > > On Sat, Jan 18, 2020, 2:48 AM Balaji Shetty > wrote: > >> Hi >> >> I have to create static pages wi

Re: DjangoEveryDay. My practice website!

2020-01-19 Thread Balaji Shetty
Great We follow you means ... Are you making code available on github to improve further.. On Sunday, January 19, 2020, Jack Lin wrote: > Hi everyone. I'm doing #DjangoEveryday Challenge to myself. > I set a goal for everyday and try to accomplish it. So I got practice and > progress everyday

Re: Necessary to learn React/ Angular with backend Django

2020-01-08 Thread Balaji Shetty
ntation of the same in your >> already working project may raise new errors. >> That's my opinion, feel free to incorporate them once you have learned >> and get the response to do so by your users. >> Regards, >> Karan Mittal >> >> On Tue, 7 Jan, 2020,

Re: How to make Django Application more secure

2020-01-02 Thread Balaji Shetty
Dear Jody Thank you very much. Entire Application built in backend is more secure than templates using view?? On Thursday, January 2, 2020, Jody Fitzpatrick < jody.lee.fitzpatr...@gmail.com> wrote: > Django by itself is fairly secure, it's your coding that makes it not > secure and the

How to make Django Application more secure

2019-12-31 Thread Balaji Shetty
Hi How can we provide best security to Django Application hosted on Pythonanywhere cloud. -- Mr Shetty Balaji Asst. Prof. IT Department SGGS I Nanded. My. India -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Necessary to learn React/ Angular with backend Django

2020-01-07 Thread Balaji Shetty
Hi Currently i deployed application on pythonanywhere. It is online office file management system with around 100 users under 10 different department in hierarchical manner. User and department may increase in future. Entire application is developed in Django back end. Used bootstrap for

Re: material

2020-08-28 Thread Balaji Shetty
Dear Participants *I am sharing you a video to learn Python Django with development of project and app. You can download source code of this video also from github link* https://www.youtube.com/watch?v=EY-XY2HDo_c  *Sourcecode* https://github.com/balaji-shetty/Django-Sample-Proj

Python Django Tutorial for absolute beginners

2020-08-24 Thread Balaji Shetty
Dear Participants *I am sharing you a video to learn Python Django with development of project and app. You can download source code of this video also from github link* https://www.youtube.com/watch?v=EY-XY2HDo_c  *Sourcecode* https://github.com/balaji-shetty/Django-Sample-Proj

Re: Learn Python and Django online with practical Approach 4 hours per week now - GROUP LINK ACTIVE

2020-08-15 Thread Balaji Shetty
interested in this course. Kindly include me in the group. > > Warm regards > > Ikechukwu Efughu > > On Wed, Aug 12, 2020, 18:09 Balaji Shetty wrote: > > Hi > > We are happy to announce you , you may join Following WhatsApp Group to > learn Basics of Python

Re: Need Dashboard in Django Admin only

2020-06-01 Thread Balaji Shetty
Thank you very much for your reply and support. I will definitely follow it. Yes I ma trying to help Government for Covid 19 Dashboard. On Sunday, May 31, 2020, Derek wrote: > There are numerous ways to design a front-end dashboard; this a highly > contested domain on the web! > > Just some

Learn Python and Django online with practical Approach 4 hours per week now

2020-08-12 Thread Balaji Shetty
Hi We are happy to announce you , you may join Following WhatsApp Group to learn Basics of Python and Django free of cost with total practical approach. https://chat.whatsapp.com/DbHpPsUcDF4EiplISnqfzh Also, Anyone from our Group may also serve as resource person and may give 1 hour

Need Covid 19 Database for Experiments

2020-07-02 Thread Balaji Shetty
Hi Can anyone provide me Covid 19 Database. I need Covid 19 Database for Experiments Thank you -- Mr Shetty Balaji Asst. Prof. IT Department SGGS I Nanded. My. India -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-10 Thread Balaji Shetty
Thank You Very Much for considering advice On Wed, Jun 10, 2020 at 8:11 AM chaitanya orakala wrote: > sure, I will do it by tomorrow > > > On Tue, Jun 9, 2020 at 2:35 AM Balaji Shetty > wrote: > >> Nice >> >> Can you please share sample code on git link. &

Django Report Generation Tool

2020-06-04 Thread Balaji Shetty
Hi Can anyone suggest for report generation tool which involves annotate queries with operations avg, min, max, sum and count. 1. In django Admi 2 In Tepmlates -- Mr Shetty Balaji Asst. Prof. IT Department SGGS I Nanded. My. India -- You received this message because you are subscribed to

Need Help in Django DataFrames Graph Generation

2020-06-06 Thread Balaji Shetty
Hi Can any body help me in this scenario. Please see the attached file. X axis is Date and Y Axis are Attendance of Physics , chemistry, math and English Subject Students totals. How can I pass Data from model into dataframe object. This example is Static. I want to get data Dynamically from

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-09 Thread Balaji Shetty
Nice Can you please share sample code on git link. This is very common requirement in every project On Tuesday, June 9, 2020, chaitanya orakala wrote: > Thank You, Amine Aziz. I tried jquery and it worked. its so simple once we > know jquery. > do help others like you did to me. > > On Sun,