Skip to content

Commit

Permalink
Adjustments in options on web interface
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoklosowski committed Oct 19, 2015
1 parent 8bd1e1d commit 67f8ad5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions deduplicated/web/static/css/app.css
Expand Up @@ -45,6 +45,11 @@ textarea {
border: .2rem solid #aaa;
}

.box textarea {
width: calc(100% - 2rem);
height: 8rem;
}

input[type=file] {
border: 0;
}
Expand Down
7 changes: 5 additions & 2 deletions deduplicated/web/templates/dirinfo.html
Expand Up @@ -28,8 +28,11 @@
<form class="content" method="post" action="/dir/{{ directory.get_hash() }}/option">
<ul>
<li>
<input type="checkbox" name="followlink" {% if directory.is_option_follow_link() %}checked{% endif %}>Follow Links</li>
<li>Excludes:<textarea name="exclude">{{ directory.exclude|join('\n') }}</textarea></li>
<input type="checkbox" name="followlink" {% if directory.is_option_follow_link() %}checked{% endif %}> Follow Links
</li>
<li>
Excludes: <textarea name="exclude">{{ directory.exclude|join('\n') }}</textarea>
</li>
</ul>
<button type="submit">Save</button>
</form>
Expand Down

0 comments on commit 67f8ad5

Please sign in to comment.