annotate templates/simple_field.djhtml @ 177:86129d185ddb

Add versioning to bundles Some other bundle-related changes were made, including: * Editing the snippetform CSS and HTML to allow bundle/form.djhtml to be reused for editing * Changing {% block title %} to {% block section %} in the base template for bundles to allow for more flexibility when creating breadcrumbs * Saved common URL patterns in variables in bundle/urls.py * Renamed explore.html to explore.djhtml for consistency You should now be able to upload new versions as well as view the files (or a particular file) for a bundle at a specific version. Coming soon: the ability to add a timestamp and a comment for each new uploaded version (if this feature is desirable).
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 23:28:50 -0400
parents 5e10ea8052b5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
177
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
1 <div class="form-field">
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
2 <strong>{{ field.label_tag }}</strong>
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
3
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
4 {% if field.errors %}
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
5 <div class="errors">{{ field.errors }}</div>
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
6 {% endif %}
133
ba51d3b7740b Add ability to upload a file to create a snippet
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
7
177
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
8 {{ field }}
133
ba51d3b7740b Add ability to upload a file to create a snippet
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
9
177
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
10 {% if field.help_text %}
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
11 <p>{{ field.help_text }}</p>
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
12 {% endif %}
86129d185ddb Add versioning to bundles
dellsystem <ilostwaldo@gmail.com>
parents: 172
diff changeset
13 </div>