Add photostream
This commit is contained in:
parent
f04beb3aaa
commit
837e4fe693
4 changed files with 26 additions and 2 deletions
16
gallery/templates/gallery/photo_list.html
Normal file
16
gallery/templates/gallery/photo_list.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
<!-- Title -->
|
||||
{% block title %} Gallery : Photostream {% endblock %}
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
{% block breadcrumb %}
|
||||
<li>Photostream</li>
|
||||
{% endblock %}
|
||||
|
||||
<!-- Content -->
|
||||
{% block content %}
|
||||
{% for photo in object_list %}
|
||||
<a href="{{ photo.get_absolute_url }}">{{ photo.slug }}</a>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue