Skip to content
Snippets Groups Projects
Verified Commit f80aed56 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

[Reformat] docstrings

parent e260a895
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ def icon_html(obj: Model) -> str:
class FAQSectionAdmin(admin.ModelAdmin):
""" ModelAdmin for FAQ sections """
"""ModelAdmin for FAQ sections."""
list_display = ("name", "_icon")
......@@ -40,7 +40,7 @@ hide.short_description = _("Unpublish selected questions")
class FAQQuestionAdmin(admin.ModelAdmin):
""" ModelAdmin for FAQ questions """
"""ModelAdmin for FAQ questions."""
list_display = ("question_text", "section", "_icon", "show")
actions = [show, hide]
......@@ -52,7 +52,7 @@ class FAQQuestionAdmin(admin.ModelAdmin):
class IssueCategoryAdmin(admin.ModelAdmin):
""" ModelAdmin for issue categories """
"""ModelAdmin for issue categories."""
list_display = ("name", "_icon", "parent", "placeholder", "free_text")
......
......@@ -7,13 +7,13 @@ from .models import IssueCategory
class FAQForm(forms.Form):
""" Form used to allow users to send in a question """
"""Form used to allow users to send in a question."""
question = forms.CharField(widget=forms.Textarea(), label=_("Your question"), required=True)
class IssueForm(forms.Form):
""" Form used to allow users to report an issue """
"""Form used to allow users to report an issue."""
category_1 = forms.ModelChoiceField(
label=_("Category 1"),
......
......@@ -4,7 +4,7 @@ from django.utils.translation import ugettext_lazy as _
from ckeditor.fields import RichTextField
from aleksis.core.mixins import ExtensibleModel
from aleksis.core.util.model_helpers import COLOURS, ICONS
from aleksis.core.util.model_helpers import ICONS
class HjelpGlobalPermissions(ExtensibleModel):
......@@ -81,7 +81,7 @@ class IssueCategory(ExtensibleModel):
)
free_text = models.BooleanField(verbose_name=_("Free text input allowed"), default=False)
placeholder = models.CharField(
max_length=100, verbose_name=_("Placeholder"), blank=True, null=True
max_length=100, verbose_name=_("Placeholder"), blank=True
)
def __str__(self):
......
from rules import add_perm, always_allow
from rules import add_perm
from aleksis.core.util.predicates import has_global_perm, has_person, is_site_preference_set
......
from django.contrib.auth.decorators import login_required
from django.http import JsonResponse
from django.shortcuts import render
from django.utils.translation import ugettext_lazy as _
......@@ -15,7 +14,7 @@ from .models import FAQQuestion, FAQSection, IssueCategory
@permission_required("hjelp.view_faq")
def faq(request):
""" Shows the FAQ page """
"""Shows the FAQ page."""
context = {
"questions": FAQQuestion.objects.filter(show=True),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment