Browse Source

staticfiles -> static, and some cleanup

pull/193/head
Pēteris Caune 6 years ago
parent
commit
5ffc3088f3
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
35 changed files with 35 additions and 71 deletions
  1. +1
    -1
      templates/accounts/badges.html
  2. +1
    -1
      templates/accounts/billing.html
  3. +1
    -1
      templates/accounts/login.html
  4. +1
    -8
      templates/accounts/notifications.html
  5. +1
    -1
      templates/accounts/profile.html
  6. +1
    -4
      templates/base.html
  7. +1
    -3
      templates/base_bare.html
  8. +0
    -1
      templates/front/base_docs.html
  9. +1
    -1
      templates/front/channel_checks.html
  10. +1
    -1
      templates/front/channels.html
  11. +1
    -1
      templates/front/docs.html
  12. +1
    -1
      templates/front/docs_api.html
  13. +1
    -1
      templates/front/docs_cron.html
  14. +1
    -1
      templates/front/log.html
  15. +1
    -1
      templates/front/my_checks.html
  16. +1
    -1
      templates/front/my_checks_desktop.html
  17. +1
    -1
      templates/front/welcome.html
  18. +1
    -1
      templates/integrations/add_discord.html
  19. +1
    -1
      templates/integrations/add_email.html
  20. +1
    -1
      templates/integrations/add_hipchat.html
  21. +1
    -1
      templates/integrations/add_opsgenie.html
  22. +1
    -1
      templates/integrations/add_pagertree.html
  23. +1
    -1
      templates/integrations/add_pd.html
  24. +2
    -9
      templates/integrations/add_pushbullet.html
  25. +1
    -8
      templates/integrations/add_pushover.html
  26. +1
    -10
      templates/integrations/add_slack.html
  27. +1
    -1
      templates/integrations/add_sms.html
  28. +1
    -1
      templates/integrations/add_telegram.html
  29. +1
    -1
      templates/integrations/add_victorops.html
  30. +1
    -1
      templates/integrations/add_webhook.html
  31. +1
    -1
      templates/integrations/add_zendesk.html
  32. +1
    -1
      templates/integrations/hipchat_capabilities.json
  33. +1
    -1
      templates/integrations/hipchat_message.json
  34. +1
    -1
      templates/payments/pricing.html
  35. +1
    -1
      templates/payments/pricing_not_owner.html

+ 1
- 1
templates/accounts/badges.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}Account Settings - {% site_name %}{% endblock %}


+ 1
- 1
templates/accounts/billing.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}Account Settings - {% site_name %}{% endblock %}


+ 1
- 1
templates/accounts/login.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress hc_extras staticfiles %}
{% load compress hc_extras static %}
{% block content %}
<div class="row">


+ 1
- 8
templates/accounts/notifications.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress staticfiles hc_extras %}
{% load hc_extras %}
{% block title %}Account Settings - {% site_name %}{% endblock %}
@ -96,10 +96,3 @@
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
{% endcompress %}
{% endblock %}

+ 1
- 1
templates/accounts/profile.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}Account Settings - {% site_name %}{% endblock %}


+ 1
- 4
templates/base.html View File

@ -1,5 +1,4 @@
{% load hc_extras %}
<!DOCTYPE html>
<!DOCTYPE html>{% load compress staticfiles hc_extras %}
<html lang="en">
<head>
<meta charset="utf-8">
@ -13,8 +12,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-title" content="{% site_name %}">
<meta name="application-name" content="{% site_name %}">
{% load compress staticfiles %}
<link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/apple-touch-180.png' %}">


+ 1
- 3
templates/base_bare.html View File

@ -1,5 +1,4 @@
{% load hc_extras %}
<!DOCTYPE html>
<!DOCTYPE html>{% load compress static hc_extras %}
<html lang="en">
<head>
<meta charset="utf-8">
@ -7,7 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
{% load compress staticfiles %}
<link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
{% compress css %}


+ 0
- 1
templates/front/base_docs.html View File

@ -1,5 +1,4 @@
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<div class="row">


+ 1
- 1
templates/front/channel_checks.html View File

@ -1,4 +1,4 @@
{% load compress humanize staticfiles hc_extras %}
{% load humanize hc_extras %}
<form method="post">
{% csrf_token %}


+ 1
- 1
templates/front/channels.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load compress humanize static hc_extras %}
{% block title %}Integrations - {% site_name %}{% endblock %}


+ 1
- 1
templates/front/docs.html View File

@ -1,5 +1,5 @@
{% extends "front/base_docs.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}Documentation - {% site_name %}{% endblock %}
{% block description %}


+ 1
- 1
templates/front/docs_api.html View File

@ -1,5 +1,5 @@
{% extends "front/base_docs.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}REST API - {% site_name %}{% endblock %}


+ 1
- 1
templates/front/docs_cron.html View File

@ -1,5 +1,5 @@
{% extends "front/base_docs.html" %}
{% load compress staticfiles hc_extras %}
{% load hc_extras %}
{% block title %}Cron Syntax Cheatsheet - {% site_name %}{% endblock %}


+ 1
- 1
templates/front/log.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load compress humanize static hc_extras %}
{% block title %}My Checks - {% site_name %}{% endblock %}


+ 1
- 1
templates/front/my_checks.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress staticfiles hc_extras %}
{% load compress static hc_extras %}
{% block title %}{{ num_down|num_down_title }}{% endblock %}


+ 1
- 1
templates/front/my_checks_desktop.html View File

@ -1,4 +1,4 @@
{% load hc_extras staticfiles %}
{% load hc_extras %}
<table id="checks-table" class="table">
<tr>
<th></th>


+ 1
- 1
templates/front/welcome.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress hc_extras humanize staticfiles %}
{% load compress hc_extras humanize static %}
{% block description %}
<meta name="description" content="Cron Monitoring. Monitor nightly backups, weekly reports, cron jobs and background tasks. Receive alerts when your tasks don't run on time.">


+ 1
- 1
templates/integrations/add_discord.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add Discord - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_email.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Notification Channels - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_hipchat.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Notification Channels - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_opsgenie.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add OpsGenie - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_pagertree.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add PagerTree - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_pd.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add PagerDuty - {% site_name %}{% endblock %}


+ 2
- 9
templates/integrations/add_pushbullet.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add Pushbullet - {% site_name %}{% endblock %}
@ -27,11 +27,4 @@
</div>
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
{% endcompress %}
{% endblock %}
{% endblock %}

+ 1
- 8
templates/integrations/add_pushover.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add Pushover - {% site_name %}{% endblock %}
@ -176,10 +176,3 @@
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
{% endcompress %}
{% endblock %}

+ 1
- 10
templates/integrations/add_slack.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add Slack - {% site_name %}{% endblock %}
@ -188,13 +188,4 @@
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
{% endcompress %}
{% endblock %}

+ 1
- 1
templates/integrations/add_sms.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Notification Channels - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_telegram.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Notification Channels - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_victorops.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add VictorOps - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_webhook.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load compress humanize static hc_extras %}
{% block title %}Add Webhook - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/add_zendesk.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %}
{% load humanize static hc_extras %}
{% block title %}Add Zendesk - {% site_name %}{% endblock %}


+ 1
- 1
templates/integrations/hipchat_capabilities.json View File

@ -1,4 +1,4 @@
{% load hc_extras staticfiles %}
{% load hc_extras static %}
{
"name": "{% site_name %}",
"description": "Get Notified When Your Cron Jobs Fail",


+ 1
- 1
templates/integrations/hipchat_message.json View File

@ -1,4 +1,4 @@
{% load hc_extras humanize staticfiles %}
{% load hc_extras humanize static %}
{
"message": "“{{ check.name_then_code|escapejs }}” is {{ check.status|upper }}.",
{% if check.status == "up" %}


+ 1
- 1
templates/payments/pricing.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles compress hc_extras %}
{% load static compress hc_extras %}
{% block title %}Pricing - It's Free! - {% site_name %}{% endblock %}


+ 1
- 1
templates/payments/pricing_not_owner.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load staticfiles compress hc_extras %}
{% load hc_extras %}
{% block title %}Pricing - {% site_name %}{% endblock %}


Loading…
Cancel
Save