Mercurial > moin > 2.0
view MoinMoin/templates/global_history.html @ 2701:8d8a01710ca8
Improved Global History view in basic theme
Added bootstrap tables, buttons and icons in the Global History view in order to make it look better
author | Ajitesh Gupta <ajgupta93@gmail.com> |
---|---|
date | Thu, 07 Aug 2014 21:46:46 +0530 |
parents | 19747e4214f4 |
children | 37cf0c227a6e |
line wrap: on
line source
{% extends theme("layout.html") %} {% import "utils.html" as utils %} {% block head %} {{ super() }} <link rel="alternate" title="Global History" href="{{ url_for('feed.atom') }}" type="application/atom+xml" /> {% endblock %} {% block content %} <h1>{{ _("Global History") }}</h1> <div class='moin-clr'></div> <div id="moin-global-history"> {% for day, revs in history %} {% set latest_timestamp = revs[0].meta['mtime'] %} <div class="moin-history-container"> <div class="moin-history-container-header"> <h2>{{ day }}</h2> {% if user.valid %} <a class="bookmark-link btn btn-primary" href="{{ url_for('frontend.bookmark', time=latest_timestamp+1) }}">{{ _("Set bookmark") }}</a> {% endif %} </div> <div class="moin-history-container-body"> <table class="zebra table table-hover"> {% for rev in revs %} {% set meta = rev.meta %} <tr> <td class="moin-action col-md-1"> <span class="moin-history-{{ meta.action|lower }}"></span> </td> <td class="moin-history-links col-md-1"> <a href="{{ url_for('frontend.history', item_name=rev.fqname, bookmark=bookmark_time) }}">HIST</a> {% if bookmark_time -%} <a href="{{ url_for('frontend.diff', item_name=rev.fqname, bookmark=bookmark_time) }}">DIFF</a> {%- endif %} </td> <td class="moin-history-time col-md-1">{{ meta.mtime|timeformat }}</td> <td class="moin-history-item col-md-7"> <a class="{{ meta.contenttype|contenttype_to_class }}" href="{{ url_for('frontend.show_item', item_name=rev.fqname) }}" title="{{ meta.contenttype }}"> {% if meta.name %} {{ meta.name|join(' | ') }} {% elif meta.summary %} {{ meta.summary }} {% else %} {{ rev.fqname|shorten_fqname }} {% endif %} </a> </td> </tr> {% endfor %} </table> </div> </div> {% endfor %} {% if bookmark_time %} <div class="moin-history-container"> <div class="moin-history-container-header"> <h2>{{ bookmark_time|datetimeformat }}</h2> <a class="bookmark-link" href="{{ url_for('frontend.bookmark', time='del') }}">{{ _("Delete bookmark") }}</a> </div> </div> {% endif %} </div> {% endblock %}