{% extends "base_generic.html" %} {% block nav-mission %} {% endblock %} {% block content %} {% block small %} {% load static %}
{% if patent_detail.title_english %} {{ patent_detail.title_english|safe }} {% else %} {{ patent_detail.title_german|safe }} {% endif %}
{% for inv in patent_detail.inventor.all %}{% if not forloop.first %}, {{inv}}{% else %}{{inv}}{% endif %}{% endfor %}
{% for own in patent_detail.owner.all %}{% if not forloop.first %}, {{own}}{% else %}{{own}}{% endif %}{% endfor %}
{% if patent_detail.patentchild_patent.all %}
{% for id in patent_detail.patentchild_patent.all %} {% if forloop.first %} Patent-ID: {% if id.url %}{{id.number}}{% else %}{{id.number}}{% endif %} {% else %} , {% if id.url %}{{id.number}}{% else %}{{id.number}}{% endif %} {% endif %} {% endfor %}
{% endif %}
References: {% if patent_detail.url_family %} DPMA {% endif %} {% if patent_detail.url_family and patent_detail.google_patents %}, {% endif %} {% if patent_detail.google_patents %} Google patents {% endif %} {% if patent_detail.orbit and patent_detail.google_patents %}, {% endif %} {% if patent_detail.url_family and patent_detail.orbit and not patent_detail.google_patents %}, {% endif %} {% if patent_detail.orbit %} Orbit {% endif %}

{{patent_detail.abstract_german}}

{% if patent_detail.application_fields %}
Application fields

{{patent_detail.application_fields}}

{% endif %} {% if patent_detail.cover_image %}
Cover
{% else %}

{% endif %}

Involved Scientists
{% include "member_list.html" with l=2 m=3 s=4 height=150 member_list=patent_detail.inventor.all %} {% endblock %} {% endblock %}