Re: How to increase file upload size in twitter in django rest api

2019-10-09 Thread Aldian Fazrihady
I haven't found any restriction on file upload size. Did you experience errors while uploading? On Thu, Oct 10, 2019 at 12:04 PM ajitkumar wrote: > Hi, > > can anyone help me how to increase media upload size in django rest api, > > > > > Thanks in advance. > > > -- > You received this message

How to increase file upload size in twitter in django rest api

2019-10-09 Thread ajitkumar
Hi, can anyone help me how to increase media upload size in django rest api, Thanks in advance. -- 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

Templates rendering problem

2019-10-09 Thread Boris Romero
Hi! I recently update Django from 1.11 to 2.2.6 and I have a serious problem with the templates rendering when i put on production my site (Nginx + uWSGI + Django). The problem is a lot of '/n' and strangers characters that appears when I render any page, that obviuosly suggest is a encoding

Re: University management system

2019-10-09 Thread Jani Tiainen
Hi. How realistic, given your requirements, you think you as a developer can implement all that in one week? Ok, lets break this down a bit. Requirement 1 hierarchical users. This is rather trivial to do if you don't need fancy ui but can rely on admin facilities. Requirement 2 blogging. If

Re: University management system

2019-10-09 Thread Ankita Gupta
On Thursday, October 10, 2019 at 12:38:32 AM UTC+5:30, Nitin Kumar wrote: > > I can do this for you over the week end, you will have to pay me for that. > Thank you for your input, but I am here to learn. It would be really helpful if you can answer my queries. Have a good day, > > > > On Wed,

Re: University management system

2019-10-09 Thread Ankita Gupta
On Wednesday, October 9, 2019 at 10:39:27 PM UTC+5:30, Obodoma Uzondu Vincent wrote: > > Try using the mezzanine plugin for django . > Does mezzanine support multiple user and hierarchy system? > if you want me to teach you how to use mezzanine you have to pay me. > > On Wed, Oct 9, 2019 at

Re: University management system

2019-10-09 Thread Nitin Kumar
I can do this for you over the week end, you will have to pay me for that. On Wed, 9 Oct, 2019, 10:24 PM Ankita Gupta, wrote: > Hello everyone! > I have a project to make on university management system. > BASIC requirements- > 1. Heirarichal mode(multiple users like mentor, student, Dean,

Re:

2019-10-09 Thread Admilson de pina
https://github.com/fga-eps-mds/A-Disciplina/wiki/Padr%C3%B5es-Arquiteturais---MVC-X-Arquitetura-do-Django Uzama Zaid Mohammed Jaward escreveu no dia quarta, 9/10/2019 à(s) 18:28: > Hello there > > Can anyone send resources on Clean Architecture in Django? > > -- > You received this message

Re:

2019-10-09 Thread Waqas Ali
if anyone can have then plz share On Wed, Oct 9, 2019 at 10:28 PM Uzama Zaid Mohammed Jaward < uzamajaw...@gmail.com> wrote: > Hello there > > Can anyone send resources on Clean Architecture in Django? > > -- > You received this message because you are subscribed to the Google Groups > "Django

Re: Why and when I should override the default AdminSite

2019-10-09 Thread Jani Tiainen
Hi. I've been working with Django about 10 years and yet I haven't need for overriding admin. Admin is great tool for CRUD while developing but I wouldn't push it too far. Specially trying to put any business logic in admin doesn't go well in the long run. And it's really easy to build proper

Re: list cycle in template

2019-10-09 Thread Luqman Shofuleji
1) you forgot to include {% endfor %} in you template 2) I believe in your view all you actually need is: mylist = ['aa','bb'] return render({'mylist':mylist}) Then in your template: {% for a in mylist %} {{ mylist }}

Re: list cycle in template

2019-10-09 Thread Luqman Shofuleji
Sorry little mistake there: Then in your template: {% for a in mylist %} {{ a }} {% endfor %} On Wed, Oct 9, 2019 at 2:27 PM Luqman Shofuleji wrote: > 1) you forgot to

[no subject]

2019-10-09 Thread Uzama Zaid Mohammed Jaward
Hello there Can anyone send resources on Clean Architecture in Django? -- 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

Re: University management system

2019-10-09 Thread Obodoma Uzondu Vincent
Try using the mezzanine plugin for django . if you want me to teach you how to use mezzanine you have to pay me. On Wed, Oct 9, 2019 at 9:54 AM Ankita Gupta wrote: > Hello everyone! > I have a project to make on university management system. > BASIC requirements- > 1. Heirarichal mode(multiple

University management system

2019-10-09 Thread Ankita Gupta
Hello everyone! I have a project to make on university management system. BASIC requirements- 1. Heirarichal mode(multiple users like mentor, student, Dean, advisors etc) 2. Students need to post daily blogs about their progress(if certain task is given to them by their mentors). 3. Blogs will

Re: list cycle in template

2019-10-09 Thread Cornelis Poppema
{{ mylist.a }} means: get attribute "a" from object "mylist". For the template it doesn't matter if you have defind a variable "a", it will get the literal "a". Also see https://stackoverflow.com/questions/4651172/reference-list-item-by-index-withdoesin-django-template

Re: PROBLEM WITH ACCESING MY APP WITH -m django runserver WITH DJANGO!!

2019-10-09 Thread Clara Daia
The error message django.core.exceptions.ImproperlyConfigured: Requested setting DEBUG, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. suggests you did not configure a settings

Re: Why and when I should override the default AdminSite

2019-10-09 Thread Mike Dewhirst
That's easy. When the Admin site doesn't do exactly what you want. So press on and use it. You'll know precisely when you need to tweak something and that's when to dig out the docs again :-) Connected by Motorola Jérôme Le Carrou wrote: >I am newbie in DJango > >I've started to read

PROBLEM WITH ACCESING MY APP WITH -m django runserver WITH DJANGO!!

2019-10-09 Thread Ismael Martinez
hi everyone, i'm currently working on a project on django. but i'm struggeling to acces to my app on the navigator i already tried to change path and tried to work on a virtual env but nothing work . also launch mysql and apache with xampp but this what the terminal say: PS

list cycle in template

2019-10-09 Thread Luca Bertolotti
Hello in the view a hve a list mylist = ['aa','bb'] n = range(len(mylist)) return render({'mylist':mylist,'n':n,.}) in the template i do this: {% for a in n %} {{ mylist.a }} it never show nothing, but if i do: {% for a in n %} {{ mylist.0 }} it show 'aa' Where is the mistake?

Why and when I should override the default AdminSite

2019-10-09 Thread Jérôme Le Carrou
I am newbie in DJango I've started to read Django documentation and particularly the admin related documentation I would like to understand when an why it should be pertinent to override the default AdminSite regards -- You received this message because you are subscribed to the Google

Re: How to prevent empty record in admin subform

2019-10-09 Thread Jérôme Le Carrou
thanks it works ! Le mercredi 9 octobre 2019 08:54:56 UTC+2, Aldian Fazrihady a écrit : > > Can you replace `extra = 1` with `extra = 0` ? > > On Wed, Oct 9, 2019 at 1:26 PM Jérôme Le Carrou > wrote: > >> Hello, >> I am newbie in Django and Python so hope you will be indulgent >> I've read and

Re: How to prevent empty record in admin subform

2019-10-09 Thread Aldian Fazrihady
Can you replace `extra = 1` with `extra = 0` ? On Wed, Oct 9, 2019 at 1:26 PM Jérôme Le Carrou wrote: > Hello, > I am newbie in Django and Python so hope you will be indulgent > I've read and read again the Django documentation but for now, some concept > still are very abstract for me... > >

How to prevent empty record in admin subform

2019-10-09 Thread Jérôme Le Carrou
Hello, I am newbie in Django and Python so hope you will be indulgent I've read and read again the Django documentation but for now, some concept still are very abstract for me... I have a database and I use ModelForm and I try to customize this admin forms I currently have a main form with