Weekly Report builder

2019-09-29 Thread Ankita Gupta
I have a blog project, where users posts daily posts. I want to see activity of users like weekly report or monthly report.. just like in github we have which shows activity of users over time. How can I achieve this? Any guidance is appreciable. -- You received this message because you are

Re: Looking for online shop project

2019-09-29 Thread Tosin Ayoola
I e a project similar to an e-commerce project for On Sep 26, 2019 08:01, "Ram mohan" wrote: > Hi, > if any one do this shopapp please let me know or otherwise any source code > regarding this shopapp please send to me > > Thanks, > Ramamohan > > On Wed, Sep 25, 2019 at 6:46 PM Tosin Ayoola >

Re: calling index.html

2019-09-29 Thread RAJ musixx
1.GO to views.py and the index function 2.def index(request): return render(request, 'index.html') 3.goto ur urls.py and write following path(' ', name of your view.index, name = 'home' ) THis how u can render any page to browser as ur home page . you need to import render in ur views

Re: calling index.html

2019-09-29 Thread Deepak
Basically bro,when you you serve project it takes the index file,You can change route from / to /app then you will be directed there. On Sun, Sep 29, 2019 at 3:56 AM Tato Müller wrote: > Hi everyone. > > How can i call an html page when i request the root of my app, like >

Re: Django Register form

2019-09-29 Thread Abu Yusuf
What's the Issue? [image: photo] Abu Yusuf Jr. Software Engineer at Binate Solutions Ltd. A Dhaka, Bangladesh M 01828689381 <01828689381> E revelyusuf...@gmail.com W https://yusuff.dev Linkedin https://www.linkedin.com/in/yusuf-dev/ live:9151cfda40e05eef <#>

Re: MongoDB Connect with Django

2019-09-29 Thread Jani Tiainen
Hi. Personally I even would try to use any special backend that tries to map non-relational database with tool (ORM) that is meant for relational database. You can connect to mongodb just fine with plain python connector and read data from there. You don't need anything magical for it. Of

Re: calling index.html

2019-09-29 Thread אורי
You can use generic.TemplateView to load an HTML template. See for example: https://github.com/speedy-net/speedy-net/blob/master/speedy/core/base/views.py#L28 https://github.com/speedy-net/speedy-net/blob/master/speedy/core/about/views.py#L4 Although, there are many options to use in your