Re: What is the best route to take to build a general CMS using Django?

2018-07-11 Thread afj afj
I already saw some results for this search but what I found was another whole framework to make even a simple CMS such as django-cms or wagtail so what I want to know is is there any guidance to make just a simple CMS? On Thursday, July 12, 2018 at 5:39:20 AM UTC+3, mark wrote: > > The point of

Re: Why using manage.py command in CLI instead of using django-admin command? what's the difference between them?

2018-07-11 Thread afj afj
sorry for bothering thank you so much ^^. On Thursday, July 12, 2018 at 3:48:57 AM UTC+3, mark wrote: > > >

Re: What is the best route to take to build a general CMS using Django?

2018-07-11 Thread Mark Phillips
The point of my response was to let the original author know that he/she should do some basic research first and then ask a more specific question. A general question like the one in the subject line is pretty much a wast of everyone's time, imo. Mark On Wed, Jul 11, 2018 at 6:24 PM, mottaz

Re: What is the best route to take to build a general CMS using Django?

2018-07-11 Thread mottaz hejaze
i think we can all use google mark . thanks for the good knowledge On Thu, 12 Jul 2018, 02:48 Mark Phillips, wrote: > >

Re: What is the best route to take to build a general CMS using Django?

2018-07-11 Thread Mark Phillips
https://www.google.com/search?q=What+is+the+best+route+to+take+to+build+a+general+CMS+using+Django%3F=What+is+the+best+route+to+take+to+build+a+general+CMS+using+Django%3F=chrome..69i57j69i60.948j0j9=chrome=UTF-8 On Wed, Jul 11, 2018 at 5:21 PM, afj afj wrote: > --- > > -- > You received this

Re: Why using manage.py command in CLI instead of using django-admin command? what's the difference between them?

2018-07-11 Thread Mark Phillips

What is the best route to take to build a general CMS using Django?

2018-07-11 Thread afj afj
--- -- 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

Why using manage.py command in CLI instead of using django-admin command? what's the difference between them?

2018-07-11 Thread afj afj
--- -- 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

Re: How start django server automatically using pytest-django

2018-07-11 Thread 'Anthony Flury' via Django users
On 07/07/18 13:16, prakash sharma wrote: RE:'do you want to test on development server' NO, Drone is running the test cases.I don't want to run the runserver command. But why do you need the server running - the Django Test client is able to test views and responses without having to have

Using introspectdb with MySQL sakila and world databases

2018-07-11 Thread Ram Munjuluri
Hello, I am a newbie to django, trying to create the models from the tables in MySQL for the following 1. Sakila database 2. World database when I execute > *python manage.py inspectdb --database world city* I get the following error message (this is definitely not a warning as I do not

Need help for DJango on Windows server with MS SQL Server 2012

2018-07-11 Thread gurmeetkaurjuneja23
Hi All, Me and my team will be developing our first application in Python and we will be using SQL Server as backend. I wanted to ask one query regarding the versions of Python that have been developed and the ones that are in development. If we use the current available version of the Python

Re: Beginner

2018-07-11 Thread 'Anthony Flury' via Django users
On 10/07/18 14:06, Harsh Rawat wrote: Identifying a useful name means ? Let's say you have identified a great group of packages which you can install and provides Django friendly Shopping cart. It would be better for that group of packages to be installed by :         pip install

Re: Beginner

2018-07-11 Thread 'Anthony Flury' via Django users
On 10/07/18 14:06, Harsh Rawat wrote: Identifying a useful name means ? Well - say you have a set of packages which is useful as a Django friendly shopping cart. Would it be better to type :             pip install Django[shopping-cart] or             pip install Django[frooble] Clearly

Re: How to run/test localhost on my phone

2018-07-11 Thread Kasper Laudrup
Hi John, On 2018-07-11 21:48, john speny wrote: i want to see that congratulation for running your first app message that appears when you first run your server for the first time on ur pc web browser. i want to see it on my phone.soo help me Run the development server like: python

How to run/test localhost on my phone

2018-07-11 Thread john speny
i want to see that congratulation for running your first app message that appears when you first run your server for the first time on ur pc web browser. i want to see it on my phone.soo help me -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Django Admin CSS Not loading

2018-07-11 Thread ADEWALE ADISA
UC browser doesn't render some website very well. Though uc browser is fast and save bandwidth, it's like it doesn't 100% compatible with css and js rules. So this not django issue On Jul 11, 2018 3:07 PM, "Kayode Oladipo" wrote: > I have this problem specific to UC Browser; > App related CSS

Re: Using Django Channels to subscribe to a Redis channel

2018-07-11 Thread morlandi
I posted a working snippet here https://gist.github.com/morlandi/bb915db7acef0ee0e4cb070921208610 It's a Django management command which subscribes a Redis channel, and upon receiving a new message sends it to django-channel. You can skip the logging and redis connection boilerplate, and take

Django Admin CSS Not loading

2018-07-11 Thread Kayode Oladipo
I have this problem specific to UC Browser; App related CSS are being loaded but the ones for Django admin panel are not. They load well in Internet Explorer but UC is my preferred browser. Anyone know how to fix this? Thanks for your help. Cheers from Nigeria. -- You received this message

Re: about book

2018-07-11 Thread Alessandro Madruga Correia
On Tue, Jul 10, 2018 at 8:29 AM tribhuvan kishor < tribhuvankishor...@gmail.com> wrote: > can any one suggest me a better book for django > You didn't describe what exactly you are looking for, but.. This is a good introductory book

Django sortable multiselect field

2018-07-11 Thread Kunal Grover
Hi all, I have written a small extension on top of Django multiselect( https://github.com/goinnn/django-multiselectfield) field to allow sorting of the values stored in the database. It uses JQuery UI's drag and drop sorting setup to allow sorting of Choice field values. Hope someone finds it

Re: Is it possible to create models inside a database model

2018-07-11 Thread mottaz hejaze
you cant make models inside models becouse you cant make tables inside tables ... a model is a database table aditya the easiest way is to redesign your model and make it of 15 fields ..each field will upload to a specific folder inside the media folder another way . is to make a one image

Re: Is it possible to create models inside a database model

2018-07-11 Thread mottaz hejaze
for alexander .. you can make three models .. one for orders .. one for items .. and one for orderedItems .. the orderedItems model will have relations to both models items and orders On Tue, 10 Jul 2018, 21:19 aditya gupta, wrote: > Well I was thinking is that instead of using related_name