~yeliabmas/sloecode/wiki-file-creation

« back to all changes in this revision

Viewing changes to sloecode/templates/wiki/page.html

  • Committer: Sam Bailey
  • Date: 2012-06-22 12:33:18 UTC
  • Revision ID: yeliabmas@gmail.com-20120622123318-uii4owxend3f4q96
Directory view adapter working correctly

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
{% block title %} Wiki {% endblock %}
4
4
 
 
5
{% block prehead_includes %}
 
6
        {{ h.stylesheet_link(h.url('/p/test/wiki/static/default.css')) }}
 
7
{% endblock %}
 
8
 
5
9
{% block content %}
 
10
 
6
11
<div style='float:left'>
7
12
        {% for crumb in file['breadcrumbs'] %}
8
13
      {% if loop.last %}
13
18
    {% endfor %}
14
19
</div>
15
20
<a href="{{file['edit_url']}}" style='float:right;padding:5px;border:solid 1px'>Edit</a>
 
21
<a href="{{file['listing_url']}}" style='float:right;padding:5px;border:solid 1px'>Browse Wiki Content</a>
16
22
<div style='clear:both'/>
17
23
<div style='border:solid 1px'>
18
 
        {{ file['rendered_content'] }}
 
24
        {{ file['content'] }}
19
25
</div>
20
26
{% endblock %}