Skip to content
This repository was archived by the owner on Sep 13, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
dist: xenial
language: python
python:
- "3.6"
services:
- postgresql
before_install:
- sudo apt-get update
- sudo apt-get install libevent-dev daemontools
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load static staticfiles gravatar %}
{% load static gravatar %}
{% for person in people %}
<li class="vcard">
<img src="{% gravatar person.user.email 40 %}" alt="{{ person }}" class="main photo">
Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/about.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles humanize %}
{% load static humanize %}

{% block title %}{% trans "About" %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load static staticfiles sekizai_tags %}
{% load static sekizai_tags %}
<!DOCTYPE html>
{# Not all our third-party app views use RequestContext #}
{% get_static_prefix as STATIC_URL %}
Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/country.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles person_list_items sekizai_tags %}
{% load static person_list_items sekizai_tags %}

{% block title %}{{ country }} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/country_sites.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles %}
{% load static %}

{% block title %}{% blocktrans %}Sites in {{ country }}{% endblocktrans %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/edit_location.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles sekizai_tags %}
{% load static sekizai_tags %}

{% block title %}{% trans "Change your location" %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load person_list_items staticfiles gravatar sekizai_tags %}
{% load person_list_items static gravatar sekizai_tags %}

{% block nav_li_class_home %} class="current"{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/irc_active.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles gravatar %}
{% load static gravatar %}

{% block title %}{% trans "Active on IRC in the past hour" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/login.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles sekizai_tags %}
{% load static sekizai_tags %}

{% block title %}{% trans "Log in" %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/maps.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles gravatar sekizai_tags %}
{% load static gravatar sekizai_tags %}

{% block adder %}
{% addtoblock "css" %}
Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/profile.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles gravatar sekizai_tags %}
{% load static gravatar sekizai_tags %}

{% block title%}{{ person }} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/signup.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles sekizai_tags %}
{% load static sekizai_tags %}

{% block title %}{% trans "Sign up" %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/skill.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "maps.html" %}
{% load staticfiles person_list_items %}
{% load static person_list_items %}

{% block title %}{{ tag }} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion djangopeople/djangopeople/templates/skills.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles %}
{% load static %}

{% block title %}{% trans "Skills" %} |{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==1.11.15
Django==2.1.1
boto==2.49.0
dj-database-url==0.5.0
django-classy-tags==0.8.0
Expand Down