Fix urls and change app title
This commit is contained in:
parent
e96c272572
commit
e0e968b3d0
7 changed files with 24 additions and 14 deletions
|
@ -9,7 +9,7 @@ urlpatterns = [
|
||||||
),
|
),
|
||||||
url(r'^logout/$',
|
url(r'^logout/$',
|
||||||
logout,
|
logout,
|
||||||
{'next_page': 'blog_home'},
|
{'next_page': 'home'},
|
||||||
name='auth_logout'
|
name='auth_logout'
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
@ -48,6 +48,7 @@ X_FRAME_OPTIONS = 'DENY'
|
||||||
# Application definition
|
# Application definition
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
|
'authentication',
|
||||||
'crispy_forms',
|
'crispy_forms',
|
||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
|
@ -153,8 +154,8 @@ STATICFILES_DIRS = (
|
||||||
|
|
||||||
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
|
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
|
||||||
|
|
||||||
# LOGIN_URL = 'auth_login'
|
LOGIN_URL = 'auth_login'
|
||||||
# LOGOUT_URL = 'auth_logout'
|
LOGOUT_URL = 'auth_logout'
|
||||||
# LOGIN_REDIRECT_URL = 'blog_home'
|
LOGIN_REDIRECT_URL = 'home'
|
||||||
|
|
||||||
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
{% block title %}Home{% endblock %}
|
{% block title %}Home{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Gab's thoughts</h1>
|
<h1>Refunds</h1>
|
||||||
<p class="lead">Welcome to my blog. I hope you will enjoy your journey here.</p>
|
<p class="lead">Welcome to my website. I hope you will enjoy your journey here.</p>
|
||||||
<p>This blog is about creating websites with Django, a Python framework designed for web.</p>
|
|
||||||
<p>Feel free to start by exploring my <a href="{% url 'posts_latest' %}">latest blog entries</a>.</p>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -13,9 +13,13 @@ Including another URLconf
|
||||||
1. Import the include() function: from django.conf.urls import url, include
|
1. Import the include() function: from django.conf.urls import url, include
|
||||||
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
||||||
"""
|
"""
|
||||||
from django.conf.urls import url
|
from django.conf.urls import url, include
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
from refunds.views import home, about
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^admin/', admin.site.urls),
|
url(r'^admin/', admin.site.urls),
|
||||||
|
url(r'^auth/', include('authentication.urls')),
|
||||||
|
url(r'^$', home, name='home'),
|
||||||
|
url(r'^about/$', about, name='about'),
|
||||||
]
|
]
|
||||||
|
|
9
refunds/views.py
Normal file
9
refunds/views.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
|
||||||
|
def home(request):
|
||||||
|
return render(request, "blog/home.html")
|
||||||
|
|
||||||
|
|
||||||
|
def about(request):
|
||||||
|
return render(request, "blog/about.html")
|
|
@ -2,7 +2,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Gab's thoughts • {% block title %}{% endblock %}</title>
|
<title>Refunds • {% block title %}{% endblock %}</title>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
|
@ -9,14 +9,13 @@
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
<a class="navbar-brand" href="{% url 'blog_home' %}">Gab's thoughts</a>
|
<a class="navbar-brand" href="{% url 'home' %}">Refunds</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Collect the nav links, forms, and other content for toggling -->
|
<!-- Collect the nav links, forms, and other content for toggling -->
|
||||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
<li><a href="{% url 'posts_latest' %}">Blog posts</a></li>
|
<li><a href="{% url 'about' %}">About</a></li>
|
||||||
<li><a href="{% url 'blog_about' %}">About</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="nav navbar-nav navbar-right">
|
<ul class="nav navbar-nav navbar-right">
|
||||||
{% if not user.is_authenticated %}
|
{% if not user.is_authenticated %}
|
||||||
|
@ -28,7 +27,6 @@
|
||||||
{% firstof user.get_full_name user.username %} <span class="caret"></span>
|
{% firstof user.get_full_name user.username %} <span class="caret"></span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="{% url 'posts_drafts' %}">Drafts</a></li>
|
|
||||||
<li><a href="{% url 'admin:index' %}">Admin</a></li>
|
<li><a href="{% url 'admin:index' %}">Admin</a></li>
|
||||||
<li role="separator" class="divider"></li>
|
<li role="separator" class="divider"></li>
|
||||||
<li><a href="{% url 'auth_logout' %}?next={{ request.path }}">Logout</a></li>
|
<li><a href="{% url 'auth_logout' %}?next={{ request.path }}">Logout</a></li>
|
||||||
|
|
Loading…
Reference in a new issue