mirror of
https://github.com/Rushilwiz/launchx.git
synced 2025-04-05 12:40:18 -04:00
fix: fixed static files for prod
This commit is contained in:
parent
f4ecc6d3d3
commit
dff1b6eaff
|
@ -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'
|
||||||
|
|
||||||
|
|
3
innovate/static/innovate/confirm.css
Normal file
3
innovate/static/innovate/confirm.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
body {
|
||||||
|
color: white
|
||||||
|
}
|
|
@ -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 %}
|
|
@ -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' %}">
|
||||||
|
|
|
@ -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' %}">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load static %}
|
{% load launchx_extras %}
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" dir="ltr">
|
<html lang="en" dir="ltr">
|
||||||
|
|
|
@ -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' %}">
|
||||||
|
|
8
launchx/templatetags/launchx_extras.py
Normal file
8
launchx/templatetags/launchx_extras.py
Normal 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
|
Loading…
Reference in New Issue
Block a user