This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// Picture Properties | |
// | |
// Created by Sumit Chawla on 3/17/17. | |
// Copyright © 2017 Loud Noise Inc. All rights reserved. | |
// | |
import UIKit | |
import Photos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if is_paginated %} | |
{% load proper_paginate %} | |
{% load url_replace %} | |
<ul class="pagination"> | |
{% if page_obj.number == 1 %} | |
<li class="disabled"><span>⇤</span></li> | |
{% else %} | |
<li><a class="page-link" href="?{% url_replace request 'page' 1 %}">⇤</a></li> | |
{% endif %} | |
{% if page_obj.has_previous %} |