Denis Merigoux 9 gadi atpakaļ
vecāks
revīzija
b50ba7037b
3 mainītis faili ar 3 papildinājumiem un 2 dzēšanām
  1. 1 0
      .gitignore
  2. 1 1
      counter/templates/homeTemplate.html
  3. 1 1
      seum/settings.py

+ 1 - 0
.gitignore

@@ -53,6 +53,7 @@ coverage.xml
53 53
 *.log
54 54
 *.sqlite3
55 55
 counter/migrations/
56
+static/
56 57
 
57 58
 # Sphinx documentation
58 59
 docs/_build/

+ 1 - 1
counter/templates/homeTemplate.html

@@ -1,6 +1,6 @@
1 1
 {% extends 'baseTemplate.html' %} {% block title %}Compteurs{% endblock %} {% block content %}
2 2
 <div class="text-center">
3
-	<h1>Seum Center</h1>
3
+	<h1>SeumBook™</h1>
4 4
 </div>
5 5
 <div class="container-fluid">
6 6
 	<div class="row">

+ 1 - 1
seum/settings.py

@@ -14,7 +14,7 @@ import os
14 14
 
15 15
 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16 16
 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
17
-
17
+STATIC_ROOT = os.path.join(BASE_DIR, "static/")
18 18
 
19 19
 # Quick-start development settings - unsuitable for production
20 20
 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/