Posts by Madalosso • 31 points
2 posts
-
1
votes1
answer895
viewsA: Upload photo with model name in Django
Use a method in the field upload_to documentation: https://docs.djangoproject.com/en/2.0/ref/models/fields/#Django.db.models.FileField.upload_to See the example that involves the method…
-
2
votes2
answers14245
viewsA: CSS Hide Elements using css only
You can use @media from CSS3 (http://www.w3schools.com/cssref/css3_pr_mediaquery.asp) to create the rule when to apply a certain style to a given element, and apply display: none; for items to be…