diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-02-22 00:19:06 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-02-22 00:19:06 -0800 |
commit | fde421c01eb374054d2e442808587810fdfed5ce (patch) | |
tree | 26254620307dac3cddd59dcaceab658e1b37ea59 /bn_django/git_wiki/templates | |
parent | c620485c01ca577980792b24e9e2fa8c7e5eed31 (diff) | |
download | bnewnet-fde421c01eb374054d2e442808587810fdfed5ce.tar.gz bnewnet-fde421c01eb374054d2e442808587810fdfed5ce.zip |
major git_wiki progress + fixed syncdb problems (model attributes missing)
Diffstat (limited to 'bn_django/git_wiki/templates')
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/base.html | 11 | ||||
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/frontpage.html | 2 | ||||
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/shortlog_table | 4 |
3 files changed, 3 insertions, 14 deletions
diff --git a/bn_django/git_wiki/templates/git_wiki/base.html b/bn_django/git_wiki/templates/git_wiki/base.html index ed88aa1..526a707 100644 --- a/bn_django/git_wiki/templates/git_wiki/base.html +++ b/bn_django/git_wiki/templates/git_wiki/base.html @@ -23,17 +23,6 @@ {% endblock %} {% block content %} -{% if item %} {% block gitwiki %} {% endblock %} - <br /> - <span class="righty"> - <a href="/k/{{ item.slug }}/pdf/">pdf</a> - <a href="/k/{{ item.slug }}/log">log</a> - </span> - <br /> -{% else %} -<p>No such knowledge!</p> -<p>Perhaps you meant...</p> -{% endif %} - {% endblock %} diff --git a/bn_django/git_wiki/templates/git_wiki/frontpage.html b/bn_django/git_wiki/templates/git_wiki/frontpage.html index b4c4cbd..85698c4 100644 --- a/bn_django/git_wiki/templates/git_wiki/frontpage.html +++ b/bn_django/git_wiki/templates/git_wiki/frontpage.html @@ -20,7 +20,7 @@ If you're curious you can track my work in the <a href="/code">code</a> section. <div class="right_stuff"> For more recent content see the <a href="/timeline/">timeline</a> </div> - +<h3><a href="/k/">Browse the knowledge!</a></h3> <h3>Latest knowledge</h3> {% include "git_wiki/shortlog_table" %} <hr /> diff --git a/bn_django/git_wiki/templates/git_wiki/shortlog_table b/bn_django/git_wiki/templates/git_wiki/shortlog_table index 8d30f80..85f916d 100644 --- a/bn_django/git_wiki/templates/git_wiki/shortlog_table +++ b/bn_django/git_wiki/templates/git_wiki/shortlog_table @@ -12,12 +12,12 @@ <td class="shorthash"> {% if heads %}{% for h in heads.iteritems %} {% ifequal h.1 l.hash %} - <span style="head">[{{ h.0 }}]</span> + <span class="head">[{{ h.0 }}]</span> {% endifequal %} {% endfor %}{% endif %} {% if tags %}{% for t in tags.iteritems %} {% ifequal l.hash t.1 %} - <span style="tag">[{{ t.0 }}]</span> + <span class="tag">[{{ t.0 }}]</span> {% endifequal %}{% endfor %}{% endif %} <a href="/k/commit/{{ l.hash }}" class="subtle"> |