Posts by Jonatas Oliveira • 305 points
5 posts
-
2
votes1
answer691
viewsA: Better cardinality for a table with many relationships
There is a solution that has been found by some frameworks but I’m not sure if it might be the solution to your problem. The idea is to make the table that will have relation with several other…
-
2
votes1
answer1083
viewsA: How do you get two Ivs to be the same height even if they have different content sizes?
Hello, There are several techniques to make the height of a <div> automatically fits with the height of another. One of the most interesting I’ve seen lately is this: Two Equal Height Columns…
-
1
votes1
answer313
viewsA: Map of Google Maps disappeared
The problem is that you added a <div> with class drop and he’s at no set height. You will be able to see the map by adding the following rule in the CSS file: .drop { height: 100%; } Only you…
-
7
votes2
answers2487
viewsA: Render HTML using PHP
The simplest way to do this is to separate HTML into small blocks and put them into distinct files. This will simplify the maintenance of the files and avoid the repetitions you commented on. In the…
-
2
votes1
answer251
viewsA: Problem with Django authentication
According to the error message that appears in screen shot the problem is that table USUARIO does not have the column USERNAME. Have you checked whether the columns required for Django…