snipt/snipts/templates/snipts/detail.html

82 lines
3.6 KiB
HTML
Raw Normal View History

2012-01-16 15:47:09 -08:00
{% extends "base.html" %}
2015-11-04 18:57:04 -08:00
{% load humanize pygmentize snipt_tags %}
2014-05-04 19:47:15 -07:00
{% block add-snipt %}
{% include 'add-snipt.html' %}
2014-05-04 19:47:15 -07:00
{% endblock %}
2012-04-13 10:01:28 -07:00
{% block page-title %}/ {% if snipt.title %}{{ snipt.title }}{% else %}Untitled{% endif %} / {{ user.username }} - {{ block.super }}{% endblock %}
2012-02-23 12:01:06 -08:00
{% block html-class %}detail{% endblock %}
2013-01-16 20:38:13 -08:00
{% block body-class %}{% if request.path == '/api/' or request.path == '/blogging/' %}snipt-page{% else %}detail{% endif %}{% endblock %}
2012-01-16 15:47:09 -08:00
2012-02-18 11:42:30 -08:00
{% block js %}
{{ block.super }}
window.detail = true;
{% endblock %}
2012-01-16 15:47:09 -08:00
{% block breadcrumb %}
<li><a href="/{{ user.username }}/">{{ user.username }}</a></li>
2012-04-22 18:47:49 -07:00
<li><span class="prompt">/</span> <a href="{{ snipt.get_absolute_url }}">{{ snipt.title }}</a></li>
2012-01-16 15:47:09 -08:00
{% endblock %}
2012-06-05 12:46:37 -07:00
{% block aside-inner %}
{% if request.path == '/api/' %}
{% if request.user.is_authenticated %}
<aside class="api-info api-creds">
<div class="api-inner">
<h5>Your API credentials:</h5>
<ul>
<li>Username: <strong>{{ request.user.username }}</strong></li>
<li>User ID: <strong>{{ request.user.id }}</strong></li>
<li>API Key: <br /><input type="text" value="{{ request.user.api_key.key }}" /></li>
</ul>
</div>
</aside>
{% endif %}
2012-05-15 07:53:12 -07:00
<aside class="api-info immediate-help">
<div class="api-inner">
<h5>Need immediate help?</h5>
2012-07-03 15:22:48 -07:00
<p>Ping &ldquo;nicksergeant&rdquo; in <strong>#snipt</strong> on irc.freenode.net.</p>
2012-05-15 07:53:12 -07:00
</div>
</aside>
2012-05-08 10:32:53 -07:00
{% endif %}
{% endblock %}
2012-01-16 15:47:09 -08:00
{% block content %}
<section class="snipts" id="snipts">
2012-01-16 18:17:58 -08:00
{% with 'true' as detail %}
{% include "snipts/snipt-list.html" %}
{% endwith %}
2016-05-12 08:47:07 -07:00
<div class="secure-view-log" id="secure-view-log">
{% for secure_view in snipt.sniptsecureview_set.all|dictsortreversed:"created" %}
<footer class="snipt-attrs">
<ul class="attrs">
<li class="author">
<span class="avatar" style="background-image: url('https://secure.gravatar.com/avatar/{{ secure_view.user.email|md5 }}?s=15&amp;d=https://snipt.s3.amazonaws.com/img/author-icon.png');"></span>
<a href="{{ secure_view.user.get_absolute_url }}">{{ secure_view.user.username }} ({{ secure_view.user.email }})</a>
</li>
<li class="created" title="{{ secure_view.created|date:"Y-m-d\TH:i:s" }}">{{ secure_view.created|naturaltime }}</li>
</ul>
</footer>
{% endfor %}
</div>
2015-11-04 18:57:04 -08:00
<div class="snipt-log" id="history">
{% for log_entry in snipt.sniptlogentry_set.all|dictsortreversed:"created" %}
<section class="code autumn">
{{ log_entry.diff|pygmentize|safe }}
</section>
<footer class="snipt-attrs">
<ul class="attrs">
<li class="author">
<span class="avatar" style="background-image: url('https://secure.gravatar.com/avatar/{{ log_entry.user.email|md5 }}?s=15&amp;d=https://snipt.s3.amazonaws.com/img/author-icon.png');"></span>
<a href="{{ log_entry.user.get_absolute_url }}">{{ log_entry.user.username }}</a>
</li>
<li class="created" title="{{ log_entry.created|date:"Y-m-d\TH:i:s" }}">{{ log_entry.created|naturaltime }}</li>
</ul>
</footer>
{% endfor %}
</div>
2012-01-16 15:47:09 -08:00
</section>
{% endblock %}