Skip to content

Commit

Permalink
Merge branch 'master' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
marians committed Apr 7, 2015
2 parents ea49104 + 9948b34 commit b9bc5c3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion templates/key.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1>Key: {{ key }}</h1>
<h2>String Value</h2>
<code>{{ value }}</code>

{% elif type == "list" or type == "set" or type == "zset" %}
{% elif type == "list" or type == "zset" %}

<h2>Values</h2>
<ol>
Expand All @@ -58,6 +58,15 @@ <h2>Values</h2>
{% endfor %}
</ol>

{% elif type == "set" %}

<h2>Values</h2>
<ul>
{% for item in value|sort %}
<li><code>{{ item }}</code></li>
{% endfor %}
</ul>

{% elif type == "hash" %}

<h2>Hash keys and values</h2>
Expand Down

0 comments on commit b9bc5c3

Please sign in to comment.