{% extends "gstudio/base.html" %} {% load pagination_tags %} {% load adminmedia grp_tags %} {% load i18n %} {% block title %}Images{% endblock %} {% block content %} {% autopaginate images 10 %}

Image Library


{% csrf_token %}

Search Image:


{% if user.is_authenticated %}
{% csrf_token %}

Post Image:

Title: 

Image: 

Description:  

{% endif %}

{% if reportid %}

this image is already uploaded on this site

to see this image click here


{% endif %}

IMAGES

{% for image in images %}

{{image.title}}

{% csrf_token %}   {% for author in image.authors.all %} {% endfor %} {% for author in image.authors.all %} {% ifequal author.username user.username %}
{% else %} {% endifequal %} {% endfor %}
{% endfor %}

{% paginate %}

{% endblock %}