diff options
author | zsloan | 2021-06-08 19:13:18 +0000 |
---|---|---|
committer | zsloan | 2021-06-08 19:13:18 +0000 |
commit | a406cf8942bfe15ae5d407b892154b8ff676e93f (patch) | |
tree | baeb0db30ec2bc93ab4a895da2f09c7b06db5a0d | |
parent | 2c62821afc7d21cd345d6ba43b6a67dce6f526e0 (diff) | |
parent | b8408cea1ba673a4cf562349ed28c26b38f6caab (diff) | |
download | genenetwork2-a406cf8942bfe15ae5d407b892154b8ff676e93f.tar.gz |
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testing
-rw-r--r-- | wqflask/wqflask/templates/edit_trait.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/wqflask/wqflask/templates/edit_trait.html b/wqflask/wqflask/templates/edit_trait.html index c6668683..7d4c65f8 100644 --- a/wqflask/wqflask/templates/edit_trait.html +++ b/wqflask/wqflask/templates/edit_trait.html @@ -29,19 +29,17 @@ Submit Trait | Reset {% if ns.display_cell and i.timestamp == timestamp %} {% set author = i.author %} - {% set field = i.diff.field %} {% set timestamp_ = i.timestamp %} {% else %} {% set author = "" %} - {% set field = "" %} {% set timestamp_ = "" %} {% endif %} <td>{{ timestamp_ }}</td> - <td>{{ author }} {{ display_cell }}</td> - <td>{{ field }}</td> + <td>{{ author }}</td> + <td>{{ i.diff.field }}</td> <td><pre>{{ i.diff.diff }}</pre></td> {% set ns.display_cell = False %} </tr> |