Skip to content

Instantly share code, notes, and snippets.

{% 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 %}
@sumitlni
sumitlni / ViewController.swift
Created April 19, 2017 23:54
Shows how to extract GPS data from any picture
//
// ViewController.swift
// Picture Properties
//
// Created by Sumit Chawla on 3/17/17.
// Copyright © 2017 Loud Noise Inc. All rights reserved.
//
import UIKit
import Photos