Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • devel
  • global-attachments
  • master
3 results

Target

Select target project
  • owl/owl
  • jirikalvoda/owl
2 results
Select Git revision
  • devel
  • global-attachments
  • master
3 results
Show changes
Commits on Source (3)
......@@ -54,7 +54,7 @@ CREATE TABLE owl_topics (
-- 'H' = heading
-- 'T' = task
-- 'D' = discussion
-- 'X' = task with awarding of extra points
-- 'A' = task with awarding of extra points
max_points numeric(6,2) DEFAULT NULL,
UNIQUE(cid, ident)
);
......
static/favicon.png

10.1 KiB

......@@ -2,6 +2,7 @@
<html>
<head>
<title>The Postal Owl</title>
<link rel="icon" type="image/png" href='{{ url_for('static', filename='favicon.png') }}'>
<link rel=stylesheet href="{{ url_for('static', filename='owl.css') }}?v=14" type='text/css' media=all>
{% if need_js %}
<link rel="stylesheet" href='{{ url_for('static', filename='github.css') }}'>
......
......@@ -18,7 +18,7 @@
{% set ns.have_table = False %}
{% for t in topics %}
{% if t.type == 'T' or t.type == 'D' %}
{% if t.type in "TDA" %}
{% if ns.have_table == False %}
{% set ns.have_table = True %}
<table class=topics>
......