Finished removing the annoying pun

This commit is contained in:
Sebastian 2017-05-02 18:51:21 +02:00
parent ea7ce2626c
commit 7dffbd34e1
8 changed files with 10 additions and 10 deletions

View File

@ -3,8 +3,8 @@
<head>
<meta charset="utf-8">
<title>Gulashromstore Mockup</title>
<link rel="stylesheet" type="text/css" href="gulash_bulma.css">
<title>gulaschromstore Mockup</title>
<link rel="stylesheet" type="text/css" href="gulasch_bulma.css">
<link rel="stylesheet" type="text/css" href="fontawsome/css/font-awesome.min.css">
<script src="jquery-3.2.1.slim.min.js"></script>

View File

@ -1,5 +1,5 @@
"""
Django settings for gulashromstore project.
Django settings for gulaschromstore project.
Generated by 'django-admin startproject' using Django 1.10.5.
@ -53,7 +53,7 @@ MIDDLEWARE = [
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'gulashromstore.urls'
ROOT_URLCONF = 'gulaschromstore.urls'
TEMPLATES = [
{
@ -71,7 +71,7 @@ TEMPLATES = [
},
]
WSGI_APPLICATION = 'gulashromstore.wsgi.application'
WSGI_APPLICATION = 'gulaschromstore.wsgi.application'
# Database

View File

@ -2,7 +2,7 @@ from django.conf.urls import url, include
from django.conf.urls.static import static
from django.contrib import admin
from gulashromstore.settings import MEDIA_URL, MEDIA_ROOT
from gulaschromstore.settings import MEDIA_URL, MEDIA_ROOT
urlpatterns = [
url(r'^roms/', include('roms.urls')),

View File

@ -1,5 +1,5 @@
"""
WSGI config for gulashromstore project.
WSGI config for gulaschromstore project.
It exposes the WSGI callable as a module-level variable named ``application``.
@ -11,6 +11,6 @@ import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gulashromstore.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gulaschromstore.settings")
application = get_wsgi_application()

View File

@ -4,8 +4,8 @@
<head>
<meta charset="utf-8">
<title>Gulashromstore :: {% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% static "css/gulash_bulma.css" %}">
<title>Gulaschromstore :: {% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% static "css/gulasch_bulma.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "fontawsome/css/font-awesome.min.css" %}">
<script src="{% static "jquery-3.2.1.slim.min.js" %}"></script>