lostInDjango

Untitled

Nov 1st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3.  
  4. {% block content %}
  5.  
  6. <div class="userDashboard">
  7.     <h3>User Information</h3>
  8.     <p>{{ users.irusername }}</p>
  9.     <p>{{ user.iruid }}</p>
  10.     <p>{{ user.datejoined }}</p>
  11. </div>
  12. <div class="recentSessions">
  13.     <h3>Recent Sessions</h3>
  14.     {% for session in sessions %}
  15.     <h3>
  16.         <a href="#">
  17.             Track id#: {{ session.trackid }}
  18.             Iracing Session#: {{ session.irsessionid }}
  19.             Iracing Car ID#: {{ session.ircarid }}
  20.             Starting Track Temp: {{ session.startingtracktemp }}
  21.  
  22.         </a>
  23.     </h3>
  24.     {% endfor %}
  25.  
  26. </div>
  27.  
  28. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment