diff options
| author | Justin J. Novack <jnovack@gmail.com> | 2012-10-07 00:27:28 -0400 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-10-24 15:00:42 +0200 |
| commit | 5e7a8bf3186efe29c487b8a32107ee8f24152a38 (patch) | |
| tree | dcabdc7cee83b292bffa5d0a7227017ea10814fc /data/templates/edit.htm | |
| parent | 9cbf7fdfaa302181f988bce8d594ed7fee67c837 (diff) | |
| download | phorkie-5e7a8bf3186efe29c487b8a32107ee8f24152a38.tar.gz phorkie-5e7a8bf3186efe29c487b8a32107ee8f24152a38.zip | |
Properly align 'Description' field in all widths
Diffstat (limited to 'data/templates/edit.htm')
| -rw-r--r-- | data/templates/edit.htm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/data/templates/edit.htm b/data/templates/edit.htm index 521a7c2..db1f3f5 100644 --- a/data/templates/edit.htm +++ b/data/templates/edit.htm @@ -6,10 +6,12 @@ {% endblock %} {% block content %} -<form method="post" action="{{repo.getLink('edit')}}" enctype="multipart/form-data"> - <div class="control-group pastedata"> - <label for="description">Description</label> +<form method="post" action="{{repo.getLink('edit')}}" enctype="multipart/form-data" class="form-horizontal"> + <div class="control-group"> + <label class="control-label" for="description">Description</label> + <div class="controls"> <input type="text" name="description" id="description" value="{{repo.getDescription}}"/> + </div> </div> {% for fileid, file in repo.getFiles %} |
