Anonymous
djangobook.com
Django Bot
>> Jobs - Senior Programmer Analyst (Django/Python Developer) >> Links - A Complete Beginner's Guide to Django - Part 1 - 9 Django Tips for Working with Databases – Haki Benita – Medium - Healthchecks - Django app and cron/uptime monitoring service - Good Code - Using Django for (mostly) static sites - healthchecks/healthchecks: Django app which listens for pings and sends ale
Someone
Hi.. I got two apps in one project.. Candidate and Manager.. only Admin needs authentication .. thought of using middleware but I sets globally know. Is there any other way?
Someone
Or to use middleware and to use decorators for all views in manager app?
Sagar
Thanks sinatara
Sagar
Sinatra
mλdcodez
Um, I guess it recently been posted here, but, enjoy 😊
Anonymous
I appreciate your efforts
Anonymous
But, I think it takes quite a hardwork in making the book
mλdcodez
It's documentation 😊
Anonymous
Then it's OK😂
mλdcodez
I'm not stealing 😂
Anonymous
😂
mλdcodez
Btw, I do steal a lot of books 😁😬
Anonymous
I should have opened it
Anonymous
Django has one of the best if not best, documentation.
r0b0t
Django has one of the best if not best, documentation.
It's the best documentation I've ever come across
Django Bot
>> Blogs - The case for a Django upgrade - Django QuerySet to CSV Files & Datasets - Facebook integration in your website - Understanding Django's model formsets in detail and their advanced usage. - How to develop RESTful webservice in Django using Django REST framework? >> Links - Django Admin Cookbook - What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff - Mechanicalgirl.com - What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff - django - How to show different inlines depending of current object field va - sql - Django traceback on queries - Stack Overflow - WhiteNoise — WhiteNoise 3.3.1 documentation - Using setup.py in Your (Django) Project | Lincoln Loop - django/django/forms/templates/django/forms/widgets at master · django/djang - Awesome Django - Django Packages : Reusable apps, sites and tools directory - djangosnippets: Welcome - Learn Python Programming Online with the Real Python Team – Real Python - caioariede/django-location-field: Location field and widget for Django. It - How to Implement Dependent/Chained Dropdown List with Django - (1) The Django Test Driven Development Cookbook - Singapore Djangonauts - Y - CSCI E-33a · Web Programming with Python and JavaScript - PythonToDoList · Multi
Django Bot
>> Links - Tutorial : Implementing Django Formsets | Nicole Harris - What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff
Crackly
Hey guyz.
Django Bot
>> Blogs - Django Tips #22 Designing Better Models >> Links - Deploying Django, Postgres,Redis Containers To Kubernetes
Django Bot
>> Blogs - Let's talk about usernames >> Links - Let's talk about usernames - Let's talk about usernames - Let's talk about usernames - Loading Django FileField and ImageFields from the file system - mmcardle/django_builder: Django Builder Site
Root
Quick question: How to create "new blog post" creator page, I need to make something similar to blogger's new post page, similar to wordpad, but, I want to export the file to html, and, later include that html file in some webpage. TinyMCE? Can I add/include this inside a webpage? I'm total beginner. Sorry if question sounds dumb, any example links appreciated. Thanks 😊
inchidi
you can put it on your template
Django Bot
>> Links - Getting Started Scheduling Tasks with Celery | Caktus Group
Root
Wyd?
Because I got solution. 😊
Django Bot
>> Blogs - Deep Learning Acronym Cheatsheet >> Links - Let's talk about usernames - Let's talk about usernames - charles leifer | Self-referencing many-to-many through - Let's talk about usernames - Twitter - What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff - Customizing the Django Admin site – Django Musings – Medium - Let's talk about usernames - Dockerizing Django for Development - Fernando Alves - Django, fast: part 1 – Mirumee - Django-varnish-gunicorn-nginx - Scaling Django to 8 Billion Page Views - Frequently-asked questions — django-registration 2.4.1 documentation - Let's talk about usernames - Let's talk about usernames - James Bennett - Let’s talk about usernames - Aggregation | Django documentation | Django - Building Modern Django Web Applications with React and Django Rest Framewor
Someone
Hi All, I am using model form.. I just need to disable a single field (which is one to one) in that model.. i tried many but none worked so I excluded that specific field, by providing a initial value for that .. still it throws not null integrity error
Someone
Any way I can use?
Someone
@inchidi Any help?
Anonymous
show your code
Someone
I fixed it with hiddeninput field
Someone
show your code
Thanks bro for coming forward
Aluma
Hey, I want to translate the docs and guides of django to Hebrew. There is an official way to do it? Do you know any projects that published docs in other languages?
Aluma
The project of translate the guides will be non profit.
Luis
Hello guys
Luis
How are you?
Luis
Hi guys, i'm thinking create a model that can be changed byt the time but i want show in the frontend his history changes. Which package is good for this? Thank you,
inchidi
Hey, I want to translate the docs and guides of django to Hebrew. There is an official way to do it? Do you know any projects that published docs in other languages?
https://docs.djangoproject.com/en/2.0/internals/contributing/localizing/#translating-documentation django docs using transifex, you will need to create transifex account
inchidi
Woww Tnx!
you are welcome
Luis
why you want to do that btw?
It's like a medical history
Luis
We will take client's measurements
Luis
And of course they will change by the time
Luis
I want to show this changes in tje frontend
Javi
why you dont use that?
inchidi
It's like a medical history
i still dont see any reason to make "model that can be changed by the time" if you want to store "blood pressure", "blood type", "allergy" for example, why not just make field blood_pressure, blood_type, allergy and set to blank=True?
Luis
I have
Luis
Of course
Luis
But how can i show the model's history
Luis
I was seeing about django-reversion
Luis
Or django-simple-history but I'm not sure aboit if i can show the model's history in the front end
inchidi
Or django-simple-history but I'm not sure aboit if i can show the model's history in the front end
because both on django admin? you can always create your own views tho
Someone
why you dont use that?
I dint get what u r asking me
inchidi
using these packages, right?
yes, both doesnt provide views but admins so its possible for you to create the frontend but need to build the views from scratch
Javi
I dint get what u r asking me
You said that you want to disable a field. Excluding the field will not be shown in the form. And you can define a default value to avoid the null integrity
Javi
For django reversion you can use django-reversion-compare if you want to see the difference between 2 instances of the model
Javi
if you want to see a trend, AFAIK you have to build your own query
inchidi
For django reversion you can use django-reversion-compare if you want to see the difference between 2 instances of the model
i think what he want is make something exactly like what django-reversion do but on his custom page (different portal / not in django admin). am i right @JLSA17 ?
Luis
Yes, not in django admin, in the user's frontend.
Luis
I want to show a table with the history of changes
Javi
https://github.com/jedie/django-reversion-compare/blob/master/reversion_compare/views.py
Javi
"""This class can be used to add a non-admin view for comparing your object's versions.
Luis
It is not the thing that i want, i want to get a table with the values in each change
Luis
one mommento
Luis
Some like this table
Javi
Then just query the model http://django-reversion.readthedocs.io/en/stable/api.html#loading-revisions
Luis
The next month all measures can be changed
Luis
I want to show these changes in these table
Luis
Thank you guys :D