summaryrefslogtreecommitdiff
path: root/templates/project_fields.html
blob: 45db894e73ce984035664b11c6e2e0448c35f0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<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>
<p>
    <label for="featured">Featured</label><input name="featured" id="featured" type="checkbox"
                                                 {% if project.featured %}checked="checked"{% endif %}>
</p>