{% extends "base.html" %} {% load static %} {% load thumbnail %} {% load dict_extras %} {% block title %}Edit {{ thing.name }} - LabHelper{% endblock %} {% block page_header %} {% endblock %} {% block content %}

Basic Information

{% csrf_token %}
{{ thing_form.name }}
{{ thing_form.description }}
Cancel
{% if thing.picture %} {% thumbnail thing.picture "400x400" crop="center" as thumb %} {{ thing.name }} {% endthumbnail %} {% else %}
No image
{% endif %}
{% csrf_token %}
{% if thing.picture %} {% endif %}
Tags
{% regroup thing.tags.all by facet as facet_list %} {% for facet in facet_list %}
{{ facet.grouper.name }}
{% for tag in facet.list %}
{% csrf_token %}
{% endfor %}
{% endfor %}
Location
{% csrf_token %}
{% if thing.files.all %}
Files
{% for file in thing.files.all %}
{{ file.title }} ({{ file.filename }})
{% csrf_token %}
{% endfor %}
{% endif %} {% if thing.links.all %}
Links
{% for link in thing.links.all %}
{% csrf_token %}
{% endfor %}
{% endif %}

Add Tags

Add Tag

{% csrf_token %}

Add Attachments

Upload File

{% csrf_token %}

Add Link

{% csrf_token %}
{% csrf_token %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}