forked from zulip/zulip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support: Refactor realm details into a seperate template.
- Loading branch information
Showing
4 changed files
with
52 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<span class="label">realm</span> | ||
<h3><img src="{{ realm.realm_icon_url }}" class="support-realm-icon"> {{ realm.name }}</h3> | ||
<b>URL</b>: <a target="_blank" href="{{ realm.uri }}">{{ realm.uri }}</a> | | ||
<a target="_blank" href="/stats/realm/{{ realm.string_id }}/">stats</a> | | ||
<a target="_blank" href="/realm_activity/{{ realm.string_id }}/">activity</a><br> | ||
<b>Date created</b>: {{ realm.date_created|timesince }} ago<br> | ||
<b>Admins</b>: {{ realm.admin_emails }} | ||
<a title="Copy emails" class="copy-button" data-admin-emails="{{ realm.admin_emails }}"> | ||
<i class="fa fa-copy"></i> | ||
</a> | ||
<form method="POST"> | ||
<b>Status</b>:<br> | ||
{{ csrf_input }} | ||
<input type="hidden" name="realm_id" value="{{ realm.id }}" /> | ||
<select name="status"> | ||
<option value="active" {% if not realm.deactivated %}selected{% endif %}>Active</option> | ||
<option value="deactivated" {% if realm.deactivated %}selected{% endif %}>Deactivated</option> | ||
</select> | ||
<button type="submit" class="button rounded small support-submit-button">Update</button> | ||
</form> | ||
<form method="POST" class="support-plan-type-form"> | ||
<b>Plan type</b>:<br> | ||
{{ csrf_input }} | ||
<input type="hidden" name="realm_id" value="{{ realm.id }}" /> | ||
<select name="plan_type"> | ||
<option value="1" {% if realm.plan_type == 1 %}selected{% endif %}>Self Hosted</option> | ||
<option value="2" {% if realm.plan_type == 2 %}selected{% endif %}>Limited</option> | ||
<option value="3" {% if realm.plan_type == 3 %}selected{% endif %}>Standard</option> | ||
<option value="4" {% if realm.plan_type == 4 %}selected{% endif %}>Standard Free</option> | ||
</select> | ||
<button type="submit" class="button rounded small support-submit-button">Update</button> | ||
</form> | ||
<form method="POST" class="support-discount-form"> | ||
<b>Discount (use 85 for nonprofits)</b>:<br> | ||
{{ csrf_input }} | ||
<input type="hidden" name="realm_id" value="{{ realm.id }}" /> | ||
<input type="number" name="discount" value="{{ realm.default_discount}}" required> | ||
<button type="submit" class="button rounded small support-submit-button">Update</button> | ||
</form> | ||
<form method="POST" class="scrub-realm-form"> | ||
{{ csrf_input }} | ||
<input type="hidden" name="realm_id" value="{{ realm.id }}" /> | ||
<input type="hidden" name="scrub_realm" value="scrub_realm" /> | ||
<button data-string-id="{{realm.string_id}}" class="button rounded btn-danger small scrub-realm-button">Scrub realm (danger)</button> | ||
</form> | ||
<hr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters