Update registration base to use correct static files.

This commit is contained in:
Christopher Charbonneau Wells 2017-10-17 12:25:04 -04:00
parent 117ee939cf
commit 6543a78944
1 changed files with 16 additions and 17 deletions

View File

@ -7,21 +7,20 @@
<meta name="viewport" <meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"> content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}{% endblock %} | Baby Blotter</title> <title>{% block title %}{% endblock %} | Baby Blotter</title>
<link rel="stylesheet" {% if debug %}
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" <link rel="stylesheet" href="{% static "babyblotter/css/app.css" %}" />
integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" <link rel="stylesheet" href="{% static "babyblotter/css/vendor.css" %}" />
crossorigin="anonymous"> {% else %}
<link rel="stylesheet" <link rel="stylesheet" href="{% static "babyblotter/css/app.min.css" %}" />
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" <link rel="stylesheet" href="{% static "babyblotter/css/vendor.min.css" %}" />
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" {% endif %}
crossorigin="anonymous">
</head> </head>
<body class="bg-dark registration"> <body class="bg-dark registration">
<div id="view-{{ request.resolver_match.view_name }}" class="container"> <div id="view-{{ request.resolver_match.view_name }}" class="container">
<div class="text-center mb-4"> <div class="text-center mb-4">
<h1 class="display-3 mb-3 text-white"><span class="text-info">Baby</span> Blotter</h1> <h1 class="display-3 mb-3"><span class="text-info">Baby</span> Blotter</h1>
</div> </div>
<div class="bg-light p-4 rounded"> <div class="bg-light p-4 rounded text-dark">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>
</div> </div>