66 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% from "common/macros.html" import timestamp, full_post, accordion %}
 | 
						|
{% extends "base.html" %}
 | 
						|
{% block title %}inbox{% endblock %}
 | 
						|
{% block content %}
 | 
						|
<div class="darkbg inbox-container">
 | 
						|
  {% set has_subscriptions = all_subscriptions is not none %}
 | 
						|
  {% call(section) accordion(disabled=not has_subscriptions) %}
 | 
						|
    {% if section == "header" %}
 | 
						|
      {% if not has_subscriptions %}
 | 
						|
        (You have no subscriptions)
 | 
						|
      {% else %}
 | 
						|
        Your subscriptions
 | 
						|
      {% endif %}
 | 
						|
    {% elif section == "content" and has_subscriptions %}
 | 
						|
      <table class="colorful-table">
 | 
						|
        <thead>
 | 
						|
          <th>Thread</th>
 | 
						|
          <th class="small">Unsubscribe</th>
 | 
						|
        </thead>
 | 
						|
        {% for sub in all_subscriptions %}
 | 
						|
          <tr>
 | 
						|
            <td>
 | 
						|
              <a href=" {{ url_for("threads.thread", slug=sub.thread_slug) }} ">{{ sub.thread_title }}</a>
 | 
						|
            </td>
 | 
						|
            <td>
 | 
						|
              <form class="modform" method="post" action="{{ url_for("threads.subscribe", slug = sub.thread_slug) }}">
 | 
						|
                <input type="hidden" name="subscribe" value="unsubscribe">
 | 
						|
                <input class="warn" type="submit" value="Unsubscribe">
 | 
						|
              </form>
 | 
						|
            </td>
 | 
						|
          </tr>
 | 
						|
        {% endfor %}
 | 
						|
      </table>
 | 
						|
    {% endif %}
 | 
						|
  {% endcall %}
 | 
						|
  {% if has_subscriptions %}
 | 
						|
    {% if not new_posts %}
 | 
						|
      You have no unread posts.
 | 
						|
    {% else %}
 | 
						|
      You have {{ total_unreads_count }} total unread {{("post" | pluralize(num=total_unreads_count))}}:
 | 
						|
      {% for thread in new_posts %}
 | 
						|
        {% call(section) accordion() %}
 | 
						|
          {% if section == "header" %}
 | 
						|
            {% set latest_post_id = thread.posts[-1].id %}
 | 
						|
            {% set unread_posts_text = " (" + (thread.unread_count | string) + (" unread post" | pluralize(num=thread.unread_count)) %}
 | 
						|
            <a class="accordion-title" href="{{ url_for("threads.thread", slug=thread.thread_slug, after=latest_post_id, _anchor="post-" + (latest_post_id | string)) }}" title="Jump to latest post">{{thread.thread_title + unread_posts_text}}, latest at {{ timestamp(thread.newest_post_time) }})</a>
 | 
						|
            <form class="modform" method="post" action="{{ url_for("threads.subscribe", slug = thread.thread_slug) }}">
 | 
						|
              <input type="hidden" name="subscribe" value="read">
 | 
						|
              <input type="submit" value="Mark thread as Read">
 | 
						|
            </form>
 | 
						|
            <form class="modform" method="post" action="{{ url_for("threads.subscribe", slug = thread.thread_slug) }}">
 | 
						|
              <input type="hidden" name="subscribe" value="unsubscribe">
 | 
						|
              <input class="warn" type="submit" value="Unsubscribe">
 | 
						|
            </form>
 | 
						|
          {% elif section == "content" %}
 | 
						|
            {% for post in thread.posts %}
 | 
						|
              {{ full_post(post, no_reply = true) }}
 | 
						|
            {% endfor %}
 | 
						|
          {% endif %}
 | 
						|
        {% endcall %}
 | 
						|
      {% endfor %}
 | 
						|
    {% endif %}
 | 
						|
  {% endif %}
 | 
						|
</div>
 | 
						|
{% endblock %}
 |