Make it run again[tm]
This commit is contained in:
parent
0f0946b17f
commit
a7e6bdeb42
5 changed files with 21 additions and 27 deletions
|
@ -71,7 +71,6 @@ TEMPLATES = [
|
||||||
'django.template.context_processors.request',
|
'django.template.context_processors.request',
|
||||||
'django.contrib.auth.context_processors.auth',
|
'django.contrib.auth.context_processors.auth',
|
||||||
'django.contrib.messages.context_processors.messages',
|
'django.contrib.messages.context_processors.messages',
|
||||||
'sekizai.context_processors.sekizai',
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load staticfiles i18n sekizai_tags %} <!--cms_tags sekizai_tags %}-->
|
{% load staticfiles i18n %} <!--cms_tags %}-->
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
@ -29,9 +29,6 @@
|
||||||
{% block css_extra %}
|
{% block css_extra %}
|
||||||
{% endblock css_extra %}
|
{% endblock css_extra %}
|
||||||
|
|
||||||
{% render_block "css" postprocessor "compressor.contrib.sekizai.compress" %}
|
|
||||||
{% render_block "js" postprocessor "compressor.contrib.sekizai.compress" %}
|
|
||||||
|
|
||||||
<!-- Custom Fonts -->
|
<!-- Custom Fonts -->
|
||||||
<link href='//fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
|
<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">
|
<link href="{% static 'datacenterlight/font-awesome/css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "hosting/base_short.html" %}
|
{% extends "hosting/base_short.html" %}
|
||||||
{% load i18n staticfiles bootstrap3%}
|
{% load i18n staticfiles %}
|
||||||
|
|
||||||
{% block navbar %}
|
{% block navbar %}
|
||||||
{% include 'hosting/includes/_navbar_transparent.html' %}
|
{% include 'hosting/includes/_navbar_transparent.html' %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base_short.html" %}
|
{% extends "base_short.html" %}
|
||||||
{% load staticfiles bootstrap3 %}
|
{% load staticfiles %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
@ -41,5 +41,3 @@ a:link { color: #000000 }
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,10 +11,10 @@ from django.core.mail import EmailMessage
|
||||||
from .models import ResetToken
|
from .models import ResetToken
|
||||||
|
|
||||||
# Imports for the extra stuff not in django
|
# 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 base64 import b64encode, b64decode
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from django_nameko import get_pool
|
|
||||||
from random import choice, randint
|
from random import choice, randint
|
||||||
import string
|
import string
|
||||||
from configparser import ConfigParser
|
from configparser import ConfigParser
|
||||||
|
|
Loading…
Reference in a new issue