google-code-export / django-photologue

Automatically exported from code.google.com/p/django-photologue
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

No base.html example; root.html link to base.html can resolve ambiguesly. #158

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install django-photologue

What is the expected output? 
Gallery/Photos lists.

What do you see instead?
Empty pages.

What version of the product are you using? On what operating system?
Trunk on Django 1.1.1.

Please provide any additional information below
1. Define sample base.html:
-------- base.html --------------------------------
{% block body %}
    <title>{% block title %}{% endblock %}</title>
    {% block content %}{% endblock %}
{% endblock %}
---------------------------------------------------

2. Fix ambiguity in the root.html:
-------- root.html ------------------
{% extends "videologue/base.html" %}
-------------------------------------

Original issue reported on code.google.com by dchichkov@gmail.com on 1 Nov 2010 at 8:31