Skip to content

Submission tags

hypha.apply.funds.templatetags.submission_tags

register module-attribute

register = Library()
submission_links(value)
Source code in hypha/apply/funds/templatetags/submission_tags.py
@register.filter
def submission_links(value):
    # Match tags in the format #123 that is not preceeded and/or followed by a word character.
    matches = re.findall(r"(?<![\w\&])\#(\d+)(?!\w)", value)
    links = {}
    if matches:
        for submission in ApplicationSubmission.objects.filter(id__in=matches):
            links[rf"\#{submission.id}"] = (
                f'<a href="{submission.get_absolute_url()}">{submission.title} <span class="mid-grey-text">#{submission.id}</span></a>'
            )

    if links:
        for sid, link in links.items():
            value = re.sub(rf"(?<!\w){sid}(?!\w)", link, value)

    return mark_safe(value)

can_screen

can_screen(submission)
Source code in hypha/apply/funds/templatetags/submission_tags.py
@register.simple_tag
def can_screen(submission):
    if submission.is_archive:
        return False
    return True