{% extends "base.html" %} {% block title %}Oozappa - Create Jobset{% endblock %} {% block headline %}Create Jobset{% endblock %} {% block body %}
{% if form.errors %}
{% endif %} {% if error_message %}
{% endif %}
Job information {{ form.csrf_token }}
  • {{ form.title(size=10, class_='wide text input') }}: {{ form.title.label(class_='inline') }}
  • {{ form.description(size=50, class_='wide input textarea') }} : {{ form.description.label(class_='inline') }}
  • {% for job in job_list %}
    {{ job.name }} ({{ job.environment.name}})
     {{ job.description }}
    {% endfor %}
  • {{ form.job_id.label(class_='inline') }}
    {% endblock %}