1
0
Fork 0

Fix site title block

merge-requests/143/head
Nikos Roussos 2015-07-22 14:20:45 +03:00
parent 5760c6a459
commit 7299b2e0c9
30 changed files with 33 additions and 33 deletions

View File

@ -3,7 +3,7 @@
{% load url from future %}
{% load crispy_forms_tags %}
{% block head_title %}Account{% endblock %}
{% block head_title %} - Account{% endblock %}
{% block content %}
<div class="container">

View File

@ -3,7 +3,7 @@
{% load url from future %}
{% load account %}
{% block head_title %}Confirm E-mail Address{% endblock %}
{% block head_title %} - Confirm E-mail Address{% endblock %}
{% block content %}
<div class="container">

View File

@ -2,7 +2,7 @@
{% load account %}
{% block head_title %}Confirm E-mail Address{% endblock %}
{% block head_title %} - Confirm E-mail Address{% endblock %}
{% block content %}
<div class="container">

View File

@ -4,7 +4,7 @@
{% load url from future %}
{% load crispy_forms_tags %}
{% block head_title %}Sign In{% endblock %}
{% block head_title %} - Sign In{% endblock %}
{% block content %}
<div class="container">

View File

@ -2,7 +2,7 @@
{% load url from future %}
{% block head_title %}Sign Out{% endblock %}
{% block head_title %} - Sign Out{% endblock %}
{% block content %}
<div class="container">

View File

@ -1,7 +1,7 @@
{% extends "account/base.html" %}
{% load crispy_forms_tags %}
{% block head_title %}Change Password{% endblock %}
{% block head_title %} - Change Password{% endblock %}
{% block content %}
<div class="container">

View File

@ -1,6 +1,6 @@
{% extends "account/base.html" %}
{% block head_title %}Delete Password{% endblock %}
{% block head_title %} - Delete Password{% endblock %}
{% block content %}
<h2>Delete Password</h2>

View File

@ -1,6 +1,6 @@
{% extends "account/base.html" %}
{% block head_title %}Password Deleted{% endblock %}
{% block head_title %} - Password Deleted{% endblock %}
{% block content %}
<h2>Password Deleted</h2>

View File

@ -3,7 +3,7 @@
{% load account %}
{% load crispy_forms_tags %}
{% block head_title %}Password Reset{% endblock %}
{% block head_title %} - Password Reset{% endblock %}
{% block content %}
<div class="container">

View File

@ -2,7 +2,7 @@
{% load account %}
{% block head_title %}Password Reset{% endblock %}
{% block head_title %} - Password Reset{% endblock %}
{% block content %}
<div class="container">

View File

@ -3,7 +3,7 @@
{% load url from future %}
{% load crispy_forms_tags %}
{% block head_title %}Change Password{% endblock %}
{% block head_title %} - Change Password{% endblock %}
{% block content %}
<div class="container">

View File

@ -1,7 +1,7 @@
{% extends "account/base.html" %}
{% load url from future %}
{% block head_title %}Change Password{% endblock %}
{% block head_title %} - Change Password{% endblock %}
{% block content %}
<div class="container">

View File

@ -3,7 +3,7 @@
{% load crispy_forms_tags %}
{% block head_title %}Set Password{% endblock %}
{% block head_title %} - Set Password{% endblock %}
{% block content %}
<div class="container">

View File

@ -3,7 +3,7 @@
{% load url from future %}
{% load crispy_forms_tags %}
{% block title %}Sign Up{% endblock title %}
{% block title %} - Sign Up{% endblock title %}
{% block content %}
<h1>Sign Up</h1>

View File

@ -2,7 +2,7 @@
{% load url from future %}
{% block head_title %}Invitation only Sign Ups{% endblock %}
{% block head_title %} - Invitation only Sign Ups{% endblock %}
{% block content %}
<div class="container">

View File

@ -1,7 +1,7 @@
{% extends "account/base.html" %}
{% block head_title %}Verify Your E-mail Address{% endblock %}
{% block head_title %} - Verify Your E-mail Address{% endblock %}
{% block content %}
<div class="container">

View File

@ -2,7 +2,7 @@
{% load url from future %}
{% block head_title %}Verify Your E-mail Address{% endblock %}
{% block head_title %} - Verify Your E-mail Address{% endblock %}
{% block content %}
<div class="container">
@ -10,7 +10,7 @@
<div class="col-md-5">
<h2>Verify Your E-mail Address</h2>
{% url 'account_email' as email_url %}
<p>This part of the site requires us to verify that
you are who you claim to be. For this purpose, we require that you
verify ownership of your e-mail address.</p>

View File

@ -1,4 +1,4 @@
{% extends "base.html" %}
{% block title %}django-avatar{% endblock %}
{% block title %} - Avatar{% endblock %}
{% block content %}{% endblock %}

View File

@ -6,7 +6,7 @@
<html lang="en" ng-app>
<head>
<meta charset="utf-8">
<title>SatNOGS - Network - {% block title %}{% endblock title %}</title>
<title>SatNOGS - Network{% block title %}{% endblock title %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'css/lib/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'css/lib/bootstrap-theme.min.css' %}">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block title %} - About{% endblock %}
{% block content %}
<div class="row">

View File

@ -3,7 +3,7 @@
{% load staticfiles %}
{% load tags %}
{% block title %}Home{% endblock %}
{% block title %} - Home{% endblock %}
{% block css %}
<link rel="stylesheet" href="{% static 'css/lib/mapbox.css' %}">

View File

@ -3,7 +3,7 @@
{% load staticfiles %}
{% load tags %}
{% block title %}New Observation{% endblock %}
{% block title %} - New Observation{% endblock %}
{% block css %}
<link href="{% static 'css/lib/bootstrap-datetimepicker.min.css' %}" rel="stylesheet">

View File

@ -3,7 +3,7 @@
{% load staticfiles %}
{% block title %}Observation {{ observation.id }}{% endblock %}
{% block title %} - Observation {{ observation.id }}{% endblock %}
{% block css %}
<link rel="stylesheet" href="{% static 'css/lib/spinner.css' %}">

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load tags %}
{% block title %}Observations{% endblock %}
{% block title %} - Observations{% endblock %}
{% block content %}
<h1>

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load staticfiles %}
{% block title %}Settings{% endblock %}
{% block title %} - Site Settings{% endblock %}
{% block content %}
<div class="row">

View File

@ -3,7 +3,7 @@
{% load staticfiles %}
{% block title %}Ground Station {{ station.name }}{% endblock %}
{% block title %} - Ground Station {{ station.name }}{% endblock %}
{% block css %}
<link rel="stylesheet" href="{% static 'css/lib/mapbox.css' %}">

View File

@ -2,7 +2,7 @@
{% load tags %}
{% load staticfiles %}
{% block title %}Ground Stations{% endblock %}
{% block title %} - Ground Stations{% endblock %}
{% block content %}
<h1>

View File

@ -3,7 +3,7 @@
{% load static %}
{% load tags %}
{% block title %}User: {{ user.username }}{% endblock %}
{% block title %} - User: {{ user.username }}{% endblock %}
{% block content %}
<div class="row">

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block title %}User: {{ user.username }}{% endblock %}
{% block title %} - User: {{ user.username }}{% endblock %}
{% block content %}
<div class="row">
@ -19,4 +19,4 @@
</form>
</div>
</div>
{% endblock %}
{% endblock %}

View File

@ -2,7 +2,7 @@
{% load static %}
{% load avatar_tags %}
{% block title %}Members{% endblock %}
{% block title %} - Members{% endblock %}
{% block content %}
<div class="row">
@ -23,4 +23,4 @@
</div>
</div>
</div>
{% endblock content %}
{% endblock content %}