{% extends "base.html" %} {% load i18n %} {% load svmarkup %} {% load svmembership %} {% block title %} {% blocktrans %}People at {{site_name}}{% endblocktrans %}{% trans ": " %}{{title}} {% endblock %} {% block icon %}people{% endblock %} {% block content %}

{% trans object.category.label %} {% trans "wanted for" %} {{object.group.svgroupinfo.full_name}} {% if request.user|is_admin_of:object.group %} [{% trans "Edit" %}] {% endif %}

{% trans "Submitted By:" %} {{object.created_by.username}}
{% trans "Date:" %} {{object.date}}
{% trans "Status:" %} {{object.get_status_display}}

{{object.group.svgroupinfo.type.description}}

{% firstof object.group.svgroupinfo.long_description|svmarkup_full object.group.svgroupinfo.short_description %}

{% trans "License" %} {{object.group.svgroupinfo.license.name}}
{% trans "Development Status" %}: {{object.group.svgroupinfo.devel_status}}

{% trans "Details (job description, contact ...):" %} {{object.title}}

{{object.description|svmarkup_full}}

{% trans "Required Skills:" %}

{% with object.jobinventory_set.select_related as object_list %} {% include "svpeople/job_inventory.inc" %} {% endwith %} {% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}