forked from mirrors/bookwyrm
Compare commits
1 commit
main
...
revert-203
Author | SHA1 | Date | |
---|---|---|---|
|
6a68f07b0b |
19 changed files with 8 additions and 197 deletions
|
@ -65,7 +65,7 @@ class ActivityObject:
|
||||||
try:
|
try:
|
||||||
value = kwargs[field.name]
|
value = kwargs[field.name]
|
||||||
if value in (None, MISSING, {}):
|
if value in (None, MISSING, {}):
|
||||||
raise KeyError("Missing required field", field.name)
|
raise KeyError()
|
||||||
try:
|
try:
|
||||||
is_subclass = issubclass(field.type, ActivityObject)
|
is_subclass = issubclass(field.type, ActivityObject)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
|
|
|
@ -1,80 +0,0 @@
|
||||||
# Generated by Django 3.2.12 on 2022-03-16 23:20
|
|
||||||
|
|
||||||
import bookwyrm.models.fields
|
|
||||||
from django.db import migrations
|
|
||||||
from bookwyrm.models import Shelf
|
|
||||||
|
|
||||||
|
|
||||||
def add_shelves(apps, schema_editor):
|
|
||||||
"""add any superusers to the "admin" group"""
|
|
||||||
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
shelf_model = apps.get_model("bookwyrm", "Shelf")
|
|
||||||
|
|
||||||
users = apps.get_model("bookwyrm", "User")
|
|
||||||
local_users = users.objects.using(db_alias).filter(local=True)
|
|
||||||
for user in local_users:
|
|
||||||
remote_id = f"{user.remote_id}/books/stopped"
|
|
||||||
shelf_model.objects.using(db_alias).create(
|
|
||||||
name="Stopped reading",
|
|
||||||
identifier=Shelf.STOPPED_READING,
|
|
||||||
user=user,
|
|
||||||
editable=False,
|
|
||||||
remote_id=remote_id,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("bookwyrm", "0145_sitesettings_version"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="comment",
|
|
||||||
name="reading_status",
|
|
||||||
field=bookwyrm.models.fields.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("to-read", "To-Read"),
|
|
||||||
("reading", "Reading"),
|
|
||||||
("read", "Read"),
|
|
||||||
("stopped-reading", "Stopped-Reading"),
|
|
||||||
],
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="quotation",
|
|
||||||
name="reading_status",
|
|
||||||
field=bookwyrm.models.fields.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("to-read", "To-Read"),
|
|
||||||
("reading", "Reading"),
|
|
||||||
("read", "Read"),
|
|
||||||
("stopped-reading", "Stopped-Reading"),
|
|
||||||
],
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="review",
|
|
||||||
name="reading_status",
|
|
||||||
field=bookwyrm.models.fields.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("to-read", "To-Read"),
|
|
||||||
("reading", "Reading"),
|
|
||||||
("read", "Read"),
|
|
||||||
("stopped-reading", "Stopped-Reading"),
|
|
||||||
],
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(add_shelves, reverse_code=migrations.RunPython.noop),
|
|
||||||
]
|
|
|
@ -1,13 +0,0 @@
|
||||||
# Generated by Django 3.2.12 on 2022-03-26 20:06
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("bookwyrm", "0146_auto_20220316_2320"),
|
|
||||||
("bookwyrm", "0147_alter_user_preferred_language"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = []
|
|
|
@ -18,9 +18,8 @@ class Shelf(OrderedCollectionMixin, BookWyrmModel):
|
||||||
TO_READ = "to-read"
|
TO_READ = "to-read"
|
||||||
READING = "reading"
|
READING = "reading"
|
||||||
READ_FINISHED = "read"
|
READ_FINISHED = "read"
|
||||||
STOPPED_READING = "stopped-reading"
|
|
||||||
|
|
||||||
READ_STATUS_IDENTIFIERS = (TO_READ, READING, READ_FINISHED, STOPPED_READING)
|
READ_STATUS_IDENTIFIERS = (TO_READ, READING, READ_FINISHED)
|
||||||
|
|
||||||
name = fields.CharField(max_length=100)
|
name = fields.CharField(max_length=100)
|
||||||
identifier = models.CharField(max_length=100)
|
identifier = models.CharField(max_length=100)
|
||||||
|
|
|
@ -265,7 +265,7 @@ class GeneratedNote(Status):
|
||||||
|
|
||||||
|
|
||||||
ReadingStatusChoices = models.TextChoices(
|
ReadingStatusChoices = models.TextChoices(
|
||||||
"ReadingStatusChoices", ["to-read", "reading", "read", "stopped-reading"]
|
"ReadingStatusChoices", ["to-read", "reading", "read"]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -374,10 +374,6 @@ class User(OrderedCollectionPageMixin, AbstractUser):
|
||||||
"name": "Read",
|
"name": "Read",
|
||||||
"identifier": "read",
|
"identifier": "read",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Stopped Reading",
|
|
||||||
"identifier": "stopped-reading",
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
|
|
||||||
for shelf in shelves:
|
for shelf in shelves:
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
{% if shelf.identifier == 'to-read' %}{% trans "To Read" %}
|
{% if shelf.identifier == 'to-read' %}{% trans "To Read" %}
|
||||||
{% elif shelf.identifier == 'reading' %}{% trans "Currently Reading" %}
|
{% elif shelf.identifier == 'reading' %}{% trans "Currently Reading" %}
|
||||||
{% elif shelf.identifier == 'read' %}{% trans "Read" %}
|
{% elif shelf.identifier == 'read' %}{% trans "Read" %}
|
||||||
{% elif shelf.identifier == 'stopped-reading' %}{% trans "Stopped Reading" %}
|
|
||||||
{% else %}{{ shelf.name }}{% endif %}
|
{% else %}{{ shelf.name }}{% endif %}
|
||||||
</option>
|
</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{% extends 'layout.html' %}
|
|
||||||
{% load i18n %}
|
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{% blocktrans trimmed with book_title=book.title %}
|
|
||||||
Stop Reading "{{ book_title }}"
|
|
||||||
{% endblocktrans %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
{% include "snippets/reading_modals/stop_reading_modal.html" with book=book active=True static=True %}
|
|
||||||
|
|
||||||
{% endblock %}
|
|
|
@ -86,7 +86,6 @@
|
||||||
{% if shelf.identifier == 'to-read' %}{% trans "To Read" %}
|
{% if shelf.identifier == 'to-read' %}{% trans "To Read" %}
|
||||||
{% elif shelf.identifier == 'reading' %}{% trans "Currently Reading" %}
|
{% elif shelf.identifier == 'reading' %}{% trans "Currently Reading" %}
|
||||||
{% elif shelf.identifier == 'read' %}{% trans "Read" %}
|
{% elif shelf.identifier == 'read' %}{% trans "Read" %}
|
||||||
{% elif shelf.identifier == 'stopped-reading' %}{% trans "Stopped Reading" %}
|
|
||||||
{% else %}{{ shelf.name }}{% endif %}
|
{% else %}{{ shelf.name }}{% endif %}
|
||||||
<span class="subtitle">
|
<span class="subtitle">
|
||||||
{% include 'snippets/privacy-icons.html' with item=shelf %}
|
{% include 'snippets/privacy-icons.html' with item=shelf %}
|
||||||
|
@ -151,7 +150,7 @@
|
||||||
{% if is_self %}
|
{% if is_self %}
|
||||||
<th>{% trans "Shelved" as text %}{% include 'snippets/table-sort-header.html' with field="shelved_date" sort=sort text=text %}</th>
|
<th>{% trans "Shelved" as text %}{% include 'snippets/table-sort-header.html' with field="shelved_date" sort=sort text=text %}</th>
|
||||||
<th>{% trans "Started" as text %}{% include 'snippets/table-sort-header.html' with field="start_date" sort=sort text=text %}</th>
|
<th>{% trans "Started" as text %}{% include 'snippets/table-sort-header.html' with field="start_date" sort=sort text=text %}</th>
|
||||||
<th>{% if shelf.identifier == 'read' %}{% trans "Finished" as text %}{% else %}{% trans "Until" as text %}{% endif %}{% include 'snippets/table-sort-header.html' with field="finish_date" sort=sort text=text %}</th>
|
<th>{% trans "Finished" as text %}{% include 'snippets/table-sort-header.html' with field="finish_date" sort=sort text=text %}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<th>{% trans "Rating" as text %}{% include 'snippets/table-sort-header.html' with field="rating" sort=sort text=text %}</th>
|
<th>{% trans "Rating" as text %}{% include 'snippets/table-sort-header.html' with field="rating" sort=sort text=text %}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -181,7 +180,7 @@
|
||||||
<td data-title="{% trans "Started" %}">
|
<td data-title="{% trans "Started" %}">
|
||||||
{{ book.start_date|naturalday|default_if_none:""}}
|
{{ book.start_date|naturalday|default_if_none:""}}
|
||||||
</td>
|
</td>
|
||||||
<td data-title="{% if shelf.identifier == 'read' %}{% trans "Finished" as text %}{% else %}{% trans "Until" as text %}{% endif %}">
|
<td data-title="{% trans "Finished" %}">
|
||||||
{{ book.finish_date|naturalday|default_if_none:""}}
|
{{ book.finish_date|naturalday|default_if_none:""}}
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
{% extends 'snippets/reading_modals/layout.html' %}
|
|
||||||
{% load i18n %}
|
|
||||||
{% load utilities %}
|
|
||||||
|
|
||||||
{% block modal-title %}
|
|
||||||
{% blocktrans trimmed with book_title=book|book_title %}
|
|
||||||
Stop Reading "<em>{{ book_title }}</em>"
|
|
||||||
{% endblocktrans %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block modal-form-open %}
|
|
||||||
<form name="stop-reading-{{ uuid }}" action="{% url 'reading-status' 'stop' book.id %}" method="post" {% if not refresh %}class="submit-status"{% endif %}>
|
|
||||||
{% csrf_token %}
|
|
||||||
<input type="hidden" name="id" value="{{ readthrough.id }}">
|
|
||||||
<input type="hidden" name="reading_status" value="stop">
|
|
||||||
<input type="hidden" name="shelf" value="{{ move_from }}">
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block reading-dates %}
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column is-half">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="stop_id_start_date_{{ uuid }}">
|
|
||||||
{% trans "Started reading" %}
|
|
||||||
</label>
|
|
||||||
<input type="date" name="start_date" class="input" id="stop_id_start_date_{{ uuid }}" value="{{ readthrough.start_date | date:"Y-m-d" }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="column is-half">
|
|
||||||
<div class="field">
|
|
||||||
<label class="label" for="id_read_until_date_{{ uuid }}">
|
|
||||||
{% trans "Read until" %}
|
|
||||||
</label>
|
|
||||||
<input type="date" name="finish_date" class="input" id="id_read_until_date_{{ uuid }}" value="{% now "Y-m-d" %}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block form %}
|
|
||||||
{% include "snippets/reading_modals/form.html" with optional=True type="stop_modal" %}
|
|
||||||
{% endblock %}
|
|
|
@ -49,13 +49,6 @@
|
||||||
{% join "finish_reading" uuid as modal_id %}
|
{% join "finish_reading" uuid as modal_id %}
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
||||||
|
|
||||||
{% elif shelf.identifier == 'stopped-reading' %}
|
|
||||||
|
|
||||||
{% trans "Stopped reading" as button_text %}
|
|
||||||
{% url 'reading-status' 'stop' book.id as fallback_url %}
|
|
||||||
{% join "stop_reading" uuid as modal_id %}
|
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
|
||||||
|
|
||||||
{% elif shelf.identifier == 'to-read' %}
|
{% elif shelf.identifier == 'to-read' %}
|
||||||
|
|
||||||
{% trans "Want to read" as button_text %}
|
{% trans "Want to read" as button_text %}
|
||||||
|
@ -106,8 +99,5 @@
|
||||||
{% join "finish_reading" uuid as modal_id %}
|
{% join "finish_reading" uuid as modal_id %}
|
||||||
{% include 'snippets/reading_modals/finish_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id readthrough=readthrough refresh=True class="" %}
|
{% include 'snippets/reading_modals/finish_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id readthrough=readthrough refresh=True class="" %}
|
||||||
|
|
||||||
{% join "stop_reading" uuid as modal_id %}
|
|
||||||
{% include 'snippets/reading_modals/stop_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id readthrough=readthrough refresh=True class="" %}
|
|
||||||
|
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -29,9 +29,6 @@
|
||||||
{% join "finish_reading" uuid as modal_id %}
|
{% join "finish_reading" uuid as modal_id %}
|
||||||
{% include 'snippets/reading_modals/finish_reading_modal.html' with book=active_shelf_book id=modal_id readthrough=readthrough class="" %}
|
{% include 'snippets/reading_modals/finish_reading_modal.html' with book=active_shelf_book id=modal_id readthrough=readthrough class="" %}
|
||||||
|
|
||||||
{% join "stop_reading" uuid as modal_id %}
|
|
||||||
{% include 'snippets/reading_modals/stop_reading_modal.html' with book=active_shelf_book id=modal_id readthrough=readthrough class="" %}
|
|
||||||
|
|
||||||
{% join "progress_update" uuid as modal_id %}
|
{% join "progress_update" uuid as modal_id %}
|
||||||
{% include 'snippets/reading_modals/progress_update_modal.html' with book=active_shelf_book id=modal_id readthrough=readthrough class="" %}
|
{% include 'snippets/reading_modals/progress_update_modal.html' with book=active_shelf_book id=modal_id readthrough=readthrough class="" %}
|
||||||
|
|
||||||
|
|
|
@ -26,13 +26,6 @@
|
||||||
{% join "finish_reading" button_uuid as modal_id %}
|
{% join "finish_reading" button_uuid as modal_id %}
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
||||||
|
|
||||||
{% elif shelf.identifier == 'stopped-reading' %}
|
|
||||||
|
|
||||||
{% trans "Stop reading" as button_text %}
|
|
||||||
{% url 'reading-status' 'stop' book.id as fallback_url %}
|
|
||||||
{% join "stop_reading" button_uuid as modal_id %}
|
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
|
||||||
|
|
||||||
{% elif shelf.identifier == 'to-read' %}
|
{% elif shelf.identifier == 'to-read' %}
|
||||||
|
|
||||||
{% trans "Want to read" as button_text %}
|
{% trans "Want to read" as button_text %}
|
||||||
|
|
|
@ -33,13 +33,6 @@
|
||||||
{% join "finish_reading" button_uuid as modal_id %}
|
{% join "finish_reading" button_uuid as modal_id %}
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
||||||
|
|
||||||
{% elif shelf.identifier == 'stopped-reading' %}
|
|
||||||
|
|
||||||
{% trans "Stop reading" as button_text %}
|
|
||||||
{% url 'reading-status' 'stop' book.id as fallback_url %}
|
|
||||||
{% join "stop_reading" button_uuid as modal_id %}
|
|
||||||
{% include 'snippets/shelve_button/modal_button.html' with class=class fallback_url=fallback_url %}
|
|
||||||
|
|
||||||
{% elif shelf.identifier == 'to-read' %}
|
{% elif shelf.identifier == 'to-read' %}
|
||||||
|
|
||||||
{% trans "Want to read" as button_text %}
|
{% trans "Want to read" as button_text %}
|
||||||
|
|
|
@ -33,9 +33,8 @@
|
||||||
{% if shelf.name == 'To Read' %}{% trans "To Read" %}
|
{% if shelf.name == 'To Read' %}{% trans "To Read" %}
|
||||||
{% elif shelf.name == 'Currently Reading' %}{% trans "Currently Reading" %}
|
{% elif shelf.name == 'Currently Reading' %}{% trans "Currently Reading" %}
|
||||||
{% elif shelf.name == 'Read' %}{% trans "Read" %}
|
{% elif shelf.name == 'Read' %}{% trans "Read" %}
|
||||||
{% elif shelf.name == 'Stopped Reading' %}{% trans "Stopped Reading" %}
|
|
||||||
{% else %}{{ shelf.name }}{% endif %}
|
{% else %}{{ shelf.name }}{% endif %}
|
||||||
{% if shelf.size > 4 %}<small>(<a href="{{ shelf.local_path }}">{% blocktrans with size=shelf.size %}View all {{ size }}{% endblocktrans %}</a>)</small>{% endif %}
|
{% if shelf.size > 3 %}<small>(<a href="{{ shelf.local_path }}">{% blocktrans with size=shelf.size %}View all {{ size }}{% endblocktrans %}</a>)</small>{% endif %}
|
||||||
</h3>
|
</h3>
|
||||||
<div class="is-mobile field is-grouped">
|
<div class="is-mobile field is-grouped">
|
||||||
{% for book in shelf.books %}
|
{% for book in shelf.books %}
|
||||||
|
|
|
@ -53,17 +53,15 @@ class User(TestCase):
|
||||||
|
|
||||||
def test_user_shelves(self):
|
def test_user_shelves(self):
|
||||||
shelves = models.Shelf.objects.filter(user=self.user).all()
|
shelves = models.Shelf.objects.filter(user=self.user).all()
|
||||||
self.assertEqual(len(shelves), 4)
|
self.assertEqual(len(shelves), 3)
|
||||||
names = [s.name for s in shelves]
|
names = [s.name for s in shelves]
|
||||||
self.assertTrue("To Read" in names)
|
self.assertTrue("To Read" in names)
|
||||||
self.assertTrue("Currently Reading" in names)
|
self.assertTrue("Currently Reading" in names)
|
||||||
self.assertTrue("Read" in names)
|
self.assertTrue("Read" in names)
|
||||||
self.assertTrue("Stopped Reading" in names)
|
|
||||||
ids = [s.identifier for s in shelves]
|
ids = [s.identifier for s in shelves]
|
||||||
self.assertTrue("to-read" in ids)
|
self.assertTrue("to-read" in ids)
|
||||||
self.assertTrue("reading" in ids)
|
self.assertTrue("reading" in ids)
|
||||||
self.assertTrue("read" in ids)
|
self.assertTrue("read" in ids)
|
||||||
self.assertTrue("stopped-reading" in ids)
|
|
||||||
|
|
||||||
def test_activitypub_serialize(self):
|
def test_activitypub_serialize(self):
|
||||||
activity = self.user.to_activity()
|
activity = self.user.to_activity()
|
||||||
|
|
|
@ -622,7 +622,7 @@ urlpatterns = [
|
||||||
name="reading-status-update",
|
name="reading-status-update",
|
||||||
),
|
),
|
||||||
re_path(
|
re_path(
|
||||||
r"^reading-status/(?P<status>want|start|finish|stop)/(?P<book_id>\d+)/?$",
|
r"^reading-status/(?P<status>want|start|finish)/(?P<book_id>\d+)/?$",
|
||||||
views.ReadingStatus.as_view(),
|
views.ReadingStatus.as_view(),
|
||||||
name="reading-status",
|
name="reading-status",
|
||||||
),
|
),
|
||||||
|
|
|
@ -138,7 +138,6 @@ def handle_reading_status(user, shelf, book, privacy):
|
||||||
"to-read": "wants to read",
|
"to-read": "wants to read",
|
||||||
"reading": "started reading",
|
"reading": "started reading",
|
||||||
"read": "finished reading",
|
"read": "finished reading",
|
||||||
"stopped-reading": "stopped reading",
|
|
||||||
}[shelf.identifier]
|
}[shelf.identifier]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
# it's a non-standard shelf, don't worry about it
|
# it's a non-standard shelf, don't worry about it
|
||||||
|
|
|
@ -29,7 +29,6 @@ class ReadingStatus(View):
|
||||||
"want": "want.html",
|
"want": "want.html",
|
||||||
"start": "start.html",
|
"start": "start.html",
|
||||||
"finish": "finish.html",
|
"finish": "finish.html",
|
||||||
"stop": "stop.html",
|
|
||||||
}.get(status)
|
}.get(status)
|
||||||
if not template:
|
if not template:
|
||||||
return HttpResponseNotFound()
|
return HttpResponseNotFound()
|
||||||
|
@ -42,7 +41,6 @@ class ReadingStatus(View):
|
||||||
"want": models.Shelf.TO_READ,
|
"want": models.Shelf.TO_READ,
|
||||||
"start": models.Shelf.READING,
|
"start": models.Shelf.READING,
|
||||||
"finish": models.Shelf.READ_FINISHED,
|
"finish": models.Shelf.READ_FINISHED,
|
||||||
"stop": models.Shelf.STOPPED_READING,
|
|
||||||
}.get(status)
|
}.get(status)
|
||||||
if not identifier:
|
if not identifier:
|
||||||
return HttpResponseBadRequest()
|
return HttpResponseBadRequest()
|
||||||
|
|
Loading…
Reference in a new issue