Fixes titles

master
Laurent Morvillier 6 years ago
parent 55252e5575
commit 215dce013d
  1. 2
      news/models.py
  2. 2
      news/static/news/css/app.css
  3. 12
      news/templates/news/static/about.html
  4. 2
      news/templates/news/submission.html
  5. 2
      news/templates/news/submitted.html
  6. 4
      news/templates/news/user/account.html
  7. 2
      news/templates/news/user/change-password.html
  8. 4
      news/templates/news/user/password_reset_complete.html
  9. 2
      news/templates/news/user/password_reset_done.html
  10. 2
      news/templates/news/user/password_reset_form.html
  11. 2
      news/templates/news/user/signin.html

@ -86,6 +86,6 @@ class Player(models.Model):
class Tag(models.Model): class Tag(models.Model):
name = models.CharField(max_length=100) name = models.CharField(max_length=100)
post = models.ManyToManyField(Post, null=True, blank=True) post = models.ManyToManyField(Post, blank=True)
def __str__(self): def __str__(self):
return self.name return self.name

@ -197,7 +197,7 @@ a h1 {
} }
.imgcontainer h1 span { .imgcontainer h1 span {
background-color: #111111; background-color: #000;
} }
.inside_image_top { .inside_image_top {

@ -8,7 +8,17 @@
<p> <p>
This site is owned by Stax River. This site is owned by Stax River.
It is hosted by ALWAYSDATA, 91 rue du Faubourg Saint-Honoré, 75008 Paris (phone: +33 1 84 16 23 40). </p>
<h2>Host</h2>
<p>
This website is hosted by ALWAYSDATA, 91 rue du Faubourg Saint-Honoré, 75008 Paris (phone: +33 1 84 16 23 40).
</p>
<h2>GDPR</h2>
<p>
When creating an account on Poker Rumble, you specify an email used to retrieve your password if it's lost. We store it in a database and that's it.
No selling personal data, no cookies, no crap.
</p> </p>
{% endblock content %} {% endblock content %}

@ -2,7 +2,7 @@
{% load static %} {% load static %}
{% block title %}My amazing submission{% endblock %} {% block title %}Submit great stuff{% endblock %}
{% block content %} {% block content %}

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}My amazing blog{% endblock %} {% block title %}Submission done{% endblock %}
{% block content %} {% block content %}

@ -1,8 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %} {% block title %}Account - Poker Rumble{% endblock %}
Account
{% endblock %}
{% block content %} {% block content %}

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %} {% block title %}
Change password Change password - Poker Rumble
{% endblock %} {% endblock %}
{% block content %} {% block content %}

@ -1,5 +1,9 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}
Password changed - Poker Rumble
{% endblock %}
{% block content %} {% block content %}
<p> <p>
Your password has been set. You may go ahead and <a href="{% url 'news:signin' %}">sign in</a> now. Your password has been set. You may go ahead and <a href="{% url 'news:signin' %}">sign in</a> now.

@ -1,7 +1,7 @@
<!-- templates/registration/password_reset_done.html --> <!-- templates/registration/password_reset_done.html -->
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Email Sent{% endblock %} {% block title %}Email Sent - Poker Rumble{% endblock %}
{% block content %} {% block content %}
<h1>Check your inbox.</h1> <h1>Check your inbox.</h1>

@ -1,7 +1,7 @@
<!-- templates/registration/password_reset_form.html --> <!-- templates/registration/password_reset_form.html -->
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Forgot Your Password?{% endblock %} {% block title %}Forgot Your Password? - Poker Rumble{% endblock %}
{% block content %} {% block content %}
<h1>Forgot your password?</h1> <h1>Forgot your password?</h1>

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %} {% block title %}
Sign-in Sign-in - Poker Rumble
{% endblock %} {% endblock %}
{% block content %} {% block content %}

Loading…
Cancel
Save