{% extends "base.html" %} {% load boxes %} {% block title %}{{title}}{% endblock %} {% block header %}

{{param.title}}

{% endblock %} {% block local-headers%} {% endblock %} {% block mainbody %}
 
Track details
{% if param.data %}
NAME
{{form.name.errors }}
{{form.name}}
DATA
{% sep %} click to add the selected data to the tracks
TRACKS
{{form.text.errors }}
{{form.text}}
Help on track options
                    --- Required attributes ---

    color -> RED, GREEN, BLUE, WHITE, BLACK, PURPLE, ORANGE ... or a hexcolor #FAFACC
    style -> AUTO, ORF, INTERVAL, ARROW, BOOKMARK
    data  ->  the id of the data (filled in when clicking Add)

                    --- Optional attributes ---

    label   -> text (the label for the track, left)
    scale   -> scaling factor
    offset  -> number multiple tracks may be shifted vertically
    height  -> number the height of the track in pixels
    
    Lines starting with the # symbol are comments.
    
Options are explained on the track options page
  |     |  
{% else %}

This project does not contain data that can be visualized!

See more information on the GeneTrack site

Back to Project View

{% endif %}
{% if param.imgname %}
Track preview
{% endif %}
 
{% endblock %}