-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathmodel.html
More file actions
35 lines (35 loc) · 1.13 KB
/
model.html
File metadata and controls
35 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Visit your models</title>
</head>
<body>
{% include 'ribbon.html' %}
<h1>Visit Your Models and its Imported data</h1>
<hr>
<div class="container">
<h2>openhub app models</h2>
<li>
<a href="{% url 'portfolioprojects' %}">Portfolio Projects</a><br>
</li>
<li>
<a href="{% url 'outsideprojects' %}">Outside Projects</a><br>
</li>
<li>
<a href="{% url 'affiliatedcommitters' %}">Affiliated Committers</a><br>
</li>
<li>
<a href="{% url 'outsidecommitters' %}">Outside Committers</a><br>
</li>
<li>
<a href="{% url 'organization' %}">Organizations</a><br>
</li>
</div>
<hr>
</body>
</html>