diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/project_fields.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/project_fields.html b/templates/project_fields.html index c128fd5..45db894 100644 --- a/templates/project_fields.html +++ b/templates/project_fields.html @@ -19,3 +19,8 @@ <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> + |