Exemplo n.º 1
0
def search(request, section_slug, page):
    section = get_object_or_404(Section, slug=section_slug)
    is_op_post = request.GET.get("is_op_post") or False
    posts = Post.objects.filter(is_op_post=is_op_post,
        thread__section=section,
        message__contains=request.GET["q"]
    ).order_by("-date")
    if not posts.count():
        return render(request, "client_error.html", add_sidebar({
            "details": _("Nothing found")
        }))
    p = get_page_or_404(Paginator(posts, section.ONPAGE), page)
    return render(request, "search_results.html", add_sidebar({"posts": p,
        "section": section}))
Exemplo n.º 2
0
def images(request, section_slug, page):
    """TODO: List of images in section."""
    section = get_object_or_404(Section, slug=section_slug)
    images_page = Paginator(section.images(), 100)
    return render(request, "section_images.html", add_sidebar({
        "images_page": images_page,
        "section": section,
    }))
Exemplo n.º 3
0
def threads(request, section_slug):
    """List of OP-posts in section."""
    section = get_object_or_404(Section, slug=section_slug)
    return render(request, "section_threads.html", add_sidebar({
        "threads": section.op_posts(),
        "section": section,
        "form": PostForm(),
    }))
Exemplo n.º 4
0
def index(request):
    bookmarks = list(request.session["feed"])
    bposts = Post.objects.filter(is_op_post=True, id__in=bookmarks)

    #Thread.objects.filter
    return render(request, "index.html", add_sidebar({
        "bookmarks": make_post_descriptions(bposts),
        "random_images": File.objects.random_images()[:3],
    }))
Exemplo n.º 5
0
def section(request, section_slug, page):
    """
    Gets 20 threads from current section with
    OP post and last 5 posts in each thread.
    """
    s = get_object_or_404(Section, slug=section_slug)
    t = get_page_or_404(Paginator(s.threads(), s.ONPAGE), page)
    return render(request, "section_page.html", add_sidebar({
        "threads": t,
        "section": s,
        "form": PostForm()
    }))
Exemplo n.º 6
0
def thread(request, section_slug, op_post):
    """Thread and its posts."""
    post = get_object_or_404(Post, thread__section__slug=section_slug,
        pid=op_post, is_deleted=False)
    thread = post.thread
    if not post.is_op_post:
        return redirect("/{}/{}#post{}".format(
            thread.section, thread.op_post.pid, post.pid
        ))
    return render(request, "section_thread.html", add_sidebar({
        "thread": thread,
        "form": PostForm(),
    }))
Exemplo n.º 7
0
def banlist(request):
    return render(request, "banlist.html",
                  add_sidebar({"banlist": DeniedIP.objects.all()}))
Exemplo n.º 8
0
def wordfilter(request):
    return render(request, "wordfilter.html",
                  add_sidebar({"wordlist": Wordfilter.objects.all()}))
Exemplo n.º 9
0
def index(request):
    return render(request, "modindex.html", add_sidebar())
Exemplo n.º 10
0
def storage(request, name="feed"):
    section = request.GET.get("section", name)
    session_posts = request.session.get(section, {})
    posts = make_post_descriptions(Post.objects.filter(id__in=session_posts))
    return render(request, "storage.html", add_sidebar({"posts": posts}))
Exemplo n.º 11
0
def faq(request):
    return render(request, "faq.html", add_sidebar())
Exemplo n.º 12
0
def settings(request):
    return render(request, "settings.html", add_sidebar())
Exemplo n.º 13
0
def banlist(request):
    return render(request, "banlist.html", add_sidebar({
        "banlist": DeniedIP.objects.all()
    }))
Exemplo n.º 14
0
def wordfilter(request):
    return render(request, "wordfilter.html", add_sidebar({
        "wordlist": Wordfilter.objects.all()
    }))
Exemplo n.º 15
0
def index(request):
    return render(request, "modindex.html", add_sidebar())
Exemplo n.º 16
0
def api(request):
    """Render the page that contains some API usage examples."""
    return render(request, "api.html", add_sidebar())