NDOJ/templates/organization/home.html

65 lines
2.3 KiB
HTML
Raw Normal View History

2022-05-30 06:59:53 +00:00
{% extends "organization/home-base.html" %}
2022-05-28 04:28:22 +00:00
{% block title_ruler %}{% endblock %}
2022-05-30 06:59:53 +00:00
2022-11-17 19:10:19 +00:00
{% block org_js %}
{% include "actionbar/media-js.html" %}
{% endblock %}
{% block three_col_media %}
{% include "actionbar/media-css.html" %}
{% endblock %}
2022-05-30 06:59:53 +00:00
{% block middle_title %}
2021-10-10 22:37:15 +00:00
<div class="page-title">
2022-06-06 16:36:35 +00:00
<div class="tabs" style="border: none;">
2023-01-24 02:36:44 +00:00
<h2><img src="{{logo_override_image}}" style="height: 3rem; vertical-align: middle">
{{title}}
</h2>
{% if is_member %}
<div>
<a href="{{organization_subdomain}}" target="_blank">(Subdomain)</a>
</div>
{% endif %}
2022-06-06 16:36:35 +00:00
<span class="spacer"></span>
{% if request.user.is_authenticated %}
{% if is_member %}
{% elif organization.is_open or can_edit %}
<form method="post" action="{{ url('join_organization', organization.id, organization.slug) }}">
{% csrf_token %}
<input type="submit" class="unselectable button" value="{{ _('Join') }}">
</form>
{% else %}
<a href="{{ url('request_organization', organization.id, organization.slug) }}"
class="unselectable button">{{ _('Request membership') }}</a>
{% endif %}
2021-10-10 22:37:15 +00:00
{% endif %}
2022-06-06 16:36:35 +00:00
</div>
2021-10-10 22:37:15 +00:00
</div>
2022-05-30 06:59:53 +00:00
{% endblock %}
{% block middle_content %}
{% block before_posts %}{% endblock %}
2022-05-28 04:28:22 +00:00
{% if is_member or can_edit %}
{% for post in posts %}
{% include "blog/content.html" %}
{% endfor %}
2022-11-17 19:10:19 +00:00
{% if posts.paginator.num_pages > 1 %}
<div style="margin-bottom:10px;margin-top:10px">{% include "list-pages.html" %}</div>
{% endif %}
2022-05-28 04:28:22 +00:00
{% else %}
<div class="blog-sidebox sidebox">
2021-10-10 22:37:15 +00:00
<h3>{{ _('About') }}<i class="fa fa-info-circle"></i></h3>
2020-12-28 05:45:58 +00:00
<div class="sidebox-content">
2022-05-28 04:28:22 +00:00
<div style="margin: 0.3em;">
2020-12-28 05:45:58 +00:00
{% cache 3600 'organization_html' organization.id MATH_ENGINE %}
2022-10-25 04:59:04 +00:00
{{ organization.about|markdown|reference|str|safe }}
2020-12-28 05:45:58 +00:00
{% endcache %}
</div>
2020-01-21 06:35:58 +00:00
</div>
</div>
2022-05-28 04:28:22 +00:00
{% endif %}
{% block after_posts %}{% endblock %}
{% endblock %}