parent
f60444c231
commit
beae2cd3ef
@ -0,0 +1,35 @@ |
||||
# Generated by Django 2.2.6 on 2019-10-09 10:04 |
||||
|
||||
from django.conf import settings |
||||
from django.db import migrations, models |
||||
import django.db.models.deletion |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('news', '0005_auto_20190918_0918'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='comment', |
||||
name='voters', |
||||
field=models.ManyToManyField(blank=True, related_name='voted_comments', to=settings.AUTH_USER_MODEL), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='player', |
||||
name='post', |
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='news.Post'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='post', |
||||
name='author', |
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='tag', |
||||
name='post', |
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='news.Post'), |
||||
), |
||||
] |
||||
@ -0,0 +1,22 @@ |
||||
# Generated by Django 2.2.6 on 2019-10-09 10:09 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('news', '0006_auto_20191009_1004'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RemoveField( |
||||
model_name='tag', |
||||
name='post', |
||||
), |
||||
migrations.AddField( |
||||
model_name='tag', |
||||
name='post', |
||||
field=models.ManyToManyField(blank=True, null=True, to='news.Post'), |
||||
), |
||||
] |
||||
@ -0,0 +1,14 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block title %}About - Poker Rumble{% endblock %} |
||||
|
||||
{% block content %} |
||||
|
||||
<h1>About</h1> |
||||
|
||||
<p> |
||||
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> |
||||
|
||||
{% endblock content %} |
||||
@ -1,13 +1,13 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block title %}Contact{% endblock %} |
||||
{% block title %}Contact - Poker Rumble{% endblock %} |
||||
|
||||
{% block content %} |
||||
|
||||
<h1>Contact</h1> |
||||
|
||||
<p> |
||||
Please contact us directly on social media! |
||||
Please contact us directly on social media, @pokerrumble on <a href="https://twitter.com/pokerrumble">twitter</a> and <a href="https://www.instagram.com/pokerrumble">instagram</a>! |
||||
</p> |
||||
|
||||
{% endblock content %} |
||||
|
||||
@ -1,3 +1,3 @@ |
||||
Someone asked for password reset for email {{ email }}. |
||||
Follow the link below: |
||||
Someone asked for a password reset for email {{ email }}. |
||||
Please follow the link below: |
||||
{{ protocol}}://{{ domain }}{% url 'news:password_reset_confirm' uidb64=uid token=token %} |
||||
|
||||
Loading…
Reference in new issue