summaryrefslogtreecommitdiff
path: root/templates/project_fields.html
blob: c128fd5cc2335094a73e8102e8e6152f67476275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<p>
    <label for="id">Id</label><input name="id" id="id" value="{{ project.id }}"
        {% if id_disabled %}
                                     disabled="disabled"
        {% endif %}
>
</p>
<p>
    <label for="name">Name</label><input id="name" name="name" value="{{ project.name }}">
</p>
<p>
    <label for="summary">Summary</label><input id="summary" name="summary" value="{{ project.summary }}">
</p>
<p>
    Description:<br>
    <textarea name="description" form="form" style="width: 100%; height: 400px;" title="description"
              id="description">{{ project.description }}</textarea>
</p>
<p>
    <label for="link">Link</label><input name="link" id="link" value="{{ project.link }}">
</p>