Created
March 23, 2013 14:34
-
-
Save svschannak/5227922 to your computer and use it in GitHub Desktop.
Django Jquery editable template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% for field, value in bewerber.fields.iteritems %} | |
<tr> | |
<td>{{ field }}</td> | |
<td><span data-model="bewerber" data-field="{{ field }}" class="edit" data-value="{{ value }}">{{ value }}</span></td> | |
</tr> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment