Changes between Initial Version and Version 4 of Ticket #6558
- Timestamp:
- Jun 23, 2008, 1:08:04 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6558
- Property Cc added
- Property Triage Stage Unreviewed → Accepted
- Property Summary Need error message when inheriting from empty template → Need a better error message when inheriting from empty template
-
Ticket #6558 – Description
initial v4 9 9 Here's the traceback. In my code, "base.html" is the template that says "hello". 10 10 11 {{{ 11 12 ---- 12 13 14 13 15 14 Environment: … … 38 37 Caught an exception while rendering: list index out of range 39 38 1 : {% extends "pubs/base.html" %} 40 41 42 39 2 : 43 44 45 40 3 : {% block middlecontent %} 46 47 48 41 4 : {% if venue_list %} 49 50 51 42 5 : <ul> 52 53 54 43 6 : {% for venue in venue_list %} 55 56 57 44 7 : <li>Featured at {{ venue }}</li> 58 59 60 45 8 : <ul> 61 62 63 46 9 : {% for pub in venue.pub_set.all %} 64 65 66 47 10 : 67 68 69 48 11 : <li><b>{{ pub.title }}</b> 70 49 … … 78 57 Exception Type: IndexError at /pubs/ 79 58 Exception Value: list index out of range 80 59 }}}