fix: fixed static files for prod

This commit is contained in:
Rushil Umaretiya 2021-02-15 16:00:52 -05:00
parent f4ecc6d3d3
commit dff1b6eaff
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
8 changed files with 22 additions and 8 deletions

View File

@ -146,10 +146,12 @@ USE_TZ = True
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'
if DEBUG: if DEBUG:
STATIC_URL = '/static/' STATIC_PREFIX = STATIC_URL
else: else:
STATIC_URL = '/launchx/static/' STATIC_PREFIX = '/launchx' + STATIC_URL
CRISPY_TEMPLATE_PACK = 'bootstrap4' CRISPY_TEMPLATE_PACK = 'bootstrap4'

View File

@ -0,0 +1,3 @@
body {
color: white
}

View File

@ -1,5 +1,5 @@
{% extends 'launchx/base.html' %} {% extends 'launchx/base.html' %}
{% load static %} {% load launchx_extras %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{% static 'innovate/confirm.css' %}"> <link rel="stylesheet" href="{% static 'innovate/confirm.css' %}">
@ -8,6 +8,7 @@
{% block content %} {% block content %}
<main class="signup"> <main class="signup">
<h1>Congrats!</h1> <h1>Congrats!</h1>
<h3>You've successfully signed up for InnovateTJ, please check your email for a confirmation. We'll see you </h3> <h4>You've successfully signed up for InnovateTJ, please check your email for a confirmation. We'll see you there!</h4>
<a href="{% url 'landing' %}"><button class="btn btn-light">Back</button></a>
</main> </main>
{% endblock %} {% endblock %}

View File

@ -1,5 +1,5 @@
{% extends "launchx/base.html" %} {% extends "launchx/base.html" %}
{% load static %} {% load launchx_extras %}
<script src="{% static 'innovate/starfield.js' %}"></script> <script src="{% static 'innovate/starfield.js' %}"></script>
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{% static 'innovate/index.css' %}"> <link rel="stylesheet" href="{% static 'innovate/index.css' %}">

View File

@ -1,5 +1,5 @@
{% extends 'launchx/base.html' %} {% extends 'launchx/base.html' %}
{% load static %} {% load launchx_extras %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{% static 'innovate/signup.css' %}"> <link rel="stylesheet" href="{% static 'innovate/signup.css' %}">

View File

@ -1,4 +1,4 @@
{% load static %} {% load launchx_extras %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" dir="ltr"> <html lang="en" dir="ltr">

View File

@ -1,5 +1,5 @@
{% extends "launchx/base.html" %} {% extends "launchx/base.html" %}
{% load static %} {% load launchx_extras %}
{% block styles %} {% block styles %}
<link rel="stylesheet" type="text/css" href="{% static 'launchx/landing.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'launchx/landing.css' %}">

View File

@ -0,0 +1,8 @@
from django import template
from django.conf import settings
register = template.Library()
@register.simple_tag
def static(file_location):
return settings.STATIC_PREFIX + file_location