Make it run again[tm]

This commit is contained in:
Nico Schottelius 2019-01-26 14:02:37 +01:00
parent 0f0946b17f
commit a7e6bdeb42
5 changed files with 21 additions and 27 deletions

View File

@ -71,7 +71,6 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'sekizai.context_processors.sekizai',
],
},
},

View File

@ -1,4 +1,4 @@
{% load staticfiles i18n sekizai_tags %} <!--cms_tags sekizai_tags %}-->
{% load staticfiles i18n %} <!--cms_tags %}-->
<!DOCTYPE html>
<html lang="en">
@ -29,9 +29,6 @@
{% block css_extra %}
{% endblock css_extra %}
{% render_block "css" postprocessor "compressor.contrib.sekizai.compress" %}
{% render_block "js" postprocessor "compressor.contrib.sekizai.compress" %}
<!-- Custom Fonts -->
<link href='//fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link href="{% static 'datacenterlight/font-awesome/css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">

View File

@ -1,5 +1,5 @@
{% extends "hosting/base_short.html" %}
{% load i18n staticfiles bootstrap3%}
{% load i18n staticfiles %}
{% block navbar %}
{% include 'hosting/includes/_navbar_transparent.html' %}

View File

@ -1,5 +1,5 @@
{% extends "base_short.html" %}
{% load staticfiles bootstrap3 %}
{% load staticfiles %}
{% block content %}
@ -41,5 +41,3 @@ a:link { color: #000000 }
</div>
{% endblock %}

View File

@ -11,10 +11,10 @@ from django.core.mail import EmailMessage
from .models import ResetToken
# Imports for the extra stuff not in django
# django_nameko is an extra module, so gets put in here
from base64 import b64encode, b64decode
from datetime import datetime
from django_nameko import get_pool
from random import choice, randint
import string
from configparser import ConfigParser