Merge pull request #161 from PetrDlouhy/fix_staticfiles

fix gen_coll_tabular.html template
This commit is contained in:
Corey Oordt 2022-09-22 08:39:00 -05:00 committed by GitHub
commit c9c8d3d0d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{% load i18n staticfiles %}
{% load i18n static %}
<div class="inline-group">
<div class="tabular inline-related {% if forloop.last %}last-related{% endif %}">
{{ inline_admin_formset.formset.management_form }}
@ -17,7 +17,7 @@
{% if inline_admin_form.form.non_field_errors %}
<tr><td colspan="{{ inline_admin_form.field_count }}">{{ inline_admin_form.form.non_field_errors }}</td></tr>
{% endif %}
<tr class="{% cycle row1,row2 %} {% if inline_admin_form.original or inline_admin_form.show_url %}has_original{% endif %}">
<tr class="{% cycle 'row1' 'row2' %} {% if inline_admin_form.original or inline_admin_form.show_url %}has_original{% endif %}">
<td class="original">
{% if inline_admin_form.original or inline_admin_form.show_url %}<p>
{% if inline_admin_form.original %} {{ inline_admin_form.original.content_object }}{% endif %}

View file

@ -1,5 +1,6 @@
from django.contrib.auth.models import User
from django.test import Client, TestCase
from django.test.utils import override_settings
from django.urls import reverse
from django.utils.encoding import smart_str
@ -9,9 +10,9 @@ from categories.models import Category
class TestCategoryAdmin(TestCase):
def setUp(self):
self.client = Client()
self.superuser = User.objects.create_superuser("testuser", "testuser@example.com", "password")
def test_adding_parent_and_child(self):
User.objects.create_superuser("testuser", "testuser@example.com", "password")
self.client.login(username="testuser", password="password")
url = reverse("admin:categories_category_add")
data = {
@ -65,3 +66,17 @@ class TestCategoryAdmin(TestCase):
url = reverse("admin:categories_category_changelist")
resp = self.client.get(url)
self.assertEqual(resp.status_code, 200)
@override_settings(RELATION_MODELS=True)
def test_addview_get(self):
self.client.force_login(self.superuser)
url = reverse("admin:categories_category_add")
resp = self.client.get(url)
self.assertEqual(resp.status_code, 200)
self.assertContains(resp, '<tr class="row1 ">')
self.assertContains(
resp,
'<input type="number" name="categoryrelation_set-0-object_id" class="vIntegerField" '
'min="0" id="id_categoryrelation_set-0-object_id">',
html=True,
)